$(document).ready(function() {
	//$('video').mediaelementplayer();
	$('.button').mouseover(function(){
		$(this).fadeTo('slow', 0.5);
	});
	$('.button').mouseout(function(){
		$(this).fadeTo('slow', 1);
	});
	$('.closevideo').click(function(){
		hideHD();
	});
	$('.botohd').click(function(){
		showHD();
	});
	$('.logo').fadeIn("800", function(){
		$('.escrit').fadeIn("800", function(){
			$('.reel').fadeIn("800",function(){
				$('.dades').fadeIn("800");
				$('.lineaverda').animate({
						width:"953px"
					},"slow",function(){
						$('.boto').fadeIn("800");
				});
			});
			$('.vjs-controls').hide();
		});
	});
});

function showHD(){
	function recolocar(object){
		//wHeight=$(window).height();
		wWidth=$(window).width();
		//mHeight=$(object).height();
		mWidth=$(object).width();
		//oTop=(wHeight/2)-(mHeight/2);
		oLeft=(wWidth/2)-(mWidth/2);
		//$(object).css('top',oTop);
		$(object).css('left',oLeft);
	}
	if ($.browser.msie || $.browser.mozilla) {
	
	}
	else {
		document.getElementById('video_1').pause();
	}
	
	recolocar('.reelhd');
	$('.reelhdbackground').show();
	$('.reelhd').fadeIn("300",function(){
		$('.vjs-controls').hide();
	});
}
function hideHD(){
	if ($.browser.msie || $.browser.mozilla) {
	
	}
	else {
		document.getElementById('videohd').pause();
	}
	$('.reelhd').fadeOut("slow",function(){
		$('.reelhdbackground').hide();	
	});
}

