// Video overlay
$(function() {
	// IE7 does not like expose
	if (ie7)
	{
		$('div[rel]').overlay({
			onLoad: function(content) {
				this.getOverlay().find('a.player').flowplayer(0).load();
			},            
			onClose: function(content) {
				$f().unload();
			}
		});				
		
		$('a.player').flowplayer('assets/templates/ithaka/img/player/flowplayer.swf', { 
			plugins: {
				controls: { 
					all: false,
					play: true,
					volume: true,
					scrubber: true,
					fullscreen: true,
					scrubberHeightRatio: 0.6,
					scrubberBarHeightRatio: 0.5,
					volumeSliderHeightRatio: 0.6,
					volumeBarHeightRatio: 0.5,				
					progressColor: '#000000-',
					bufferColor: '#666666',
					buttonColor: '#000000',
					buttonOverColor: '#92B2BD',
					volumeSliderColor: '#000000'							
				}
			},
			clip: { 
				onFinish: function() { 
					window.location = "http://www.myithaka.nl/nl/events/spring-science.html";
				} 
			}
		});	
	}
	// All the good browsers do
	else
	{		
		$('div[rel]').overlay({
			expose:	{ 
				color: '#000000', 
				loadSpeed: 1000, 
				opacity: 0.9
			},            
			onLoad: function(content) {
				this.getOverlay().find('a.player').flowplayer(0).load();
			},            
			onClose: function(content) {
				$f().unload();
			}
		});				
		
		$('a.player').flowplayer('assets/templates/ithaka/img/player/flowplayer.swf', { 
			plugins: {
				controls: { 
					all: false,
					play: true,
					volume: true,
					scrubber: true,
					fullscreen: true,
					scrubberHeightRatio: 0.6,
					scrubberBarHeightRatio: 0.5,
					volumeSliderHeightRatio: 0.6,
					volumeBarHeightRatio: 0.5,				
					progressColor: '#000000',
					bufferColor: '#666666',
					buttonColor: '#000000',
					buttonOverColor: '#92B2BD',
					volumeSliderColor: '#000000'							
				}
			},
			clip: { 
				onFinish: function() { 
					window.location = "http://www.myithaka.nl/nl/events/spring-science.html";
				} 
			}
		});
	}
});
