
jQuery(document).ready(function(){
	// install flowplayer into flowplayer container
	var player = $f("player", "/assets_global/scripts/flowplayer/flowplayer-3.2.5.swf", {
					"screen":{"height":"100pct","top":0},
					"plugins":{"controls":{
						"timeColor":"rgba(255, 255, 255, 1)",
						"borderRadius":"0px","bufferGradient":"none",
						"slowForward":true,
						"backgroundColor":"rgba(0, 0, 0, 0)",
						"volumeSliderGradient":"none",
						"slowBackward":false,
						"timeBorderRadius":6,
						"time":true,
						"progressGradient":"none",
						"height":26,
						"volumeColor":"rgba(0, 0, 0, 1)",
						"tooltips":{"marginBottom":5,"scrubber":true,"volume":true,"buttons":false},
						"fastBackward":false,
						"opacity":1,
						"timeFontSize":12,
						"volumeSliderColor":"rgba(163, 46, 0, 1)",
						"bufferColor":"rgba(0, 0, 0, 1)",
						"border":"0px",
						"buttonColor":"rgba(255, 255, 255, 1)",
						"mute":true,
						"autoHide":{"enabled":true,"hideDelay":500,"hideStyle":"fade","mouseOutDelay":500,"hideDuration":400,"fullscreenOnly":true},
						"backgroundGradient":"none",
						"width":"100pct",
						"display":"block",
						"sliderBorder":"1px solid rgba(128, 128, 128, 0.7)",
						"buttonOverColor":"rgba(204, 84, 37, 1)",
						"fullscreen":true,
						"timeBgColor":"rgba(204, 84, 37, 0)",
						"scrubberBarHeightRatio":0.2,
						"bottom":0,
						"stop":false,
						"sliderColor":"rgba(0, 0, 0, 1)",
						"zIndex":1,
						"borderColor":"rgba(0, 0, 0, 0)",
						"scrubberHeightRatio":0.6,
						"tooltipTextColor":"rgba(167, 169, 172, 1)",
						"spacing":{"time":6,"volume":8,"all":2},
						"sliderGradient":"none",
						"timeBgHeightRatio":0.8,
						"volumeSliderHeightRatio":0.6,
						"name":"controls",
						"timeSeparator":" ",
						"volumeBarHeightRatio":0.2,
						"left":"50pct",
						"tooltipColor":"rgba(0, 0, 0, 0)",
						"playlist":false,
						"durationColor":"rgba(204, 84, 37, 1)",
						"play":true,
						"fastForward":true,
						"progressColor":"rgba(167, 46, 0, 1)",
						"timeBorder":"0px solid rgba(0, 0, 0, 0.3)",
						"volume":true,
						"scrubber":true,
						"builtIn":false,
						"volumeBorder":"1px solid rgba(128, 128, 128, 0.7)",
						"margins":[2,6,2,12]}
					}
				}
	).ipad();
	
	var isiPad = navigator.userAgent.match(/iPad/i) != null;
	var isiPod = navigator.userAgent.match(/iPod/i) != null;
	var isiPhone = navigator.userAgent.match(/iPhone/i) != null;
	
	if(!isiPad && !isiPod && !isiPhone){
		jQuery('div.home_video_thumb a[rel]').overlay({
			// some mask tweaks suitable for modal dialogs
			mask: {
				color: '#ffffff',
				loadSpeed: 200,
				opacity: 0.7
			},
			closeOnClick: false,
			top: '15%',
			
			onBeforeLoad: function() {
				// HIDE ALL SELECT TAGS IN IE6 BEFORE THE OVERLAY LOADS
				if( navigator.userAgent.toLowerCase().indexOf("msie 6") != -1 ){
					jQuery("select").css('visibility','hidden');
				}
			},
			// when overlay is opened, load our player
			onLoad: function() {
				player.load();
			},
			
			// when overlay is closed, unload our player
			onClose: function() {
				player.unload();
				// SHOW ALL SELECT TAGS IN IE6
				if( navigator.userAgent.toLowerCase().indexOf("msie 6") != -1 ){
					jQuery("select").css("visibility","visible");
				}
			}
	
		});
	}
});

