$(document).ready(function() {

	
	//OPEN VIDEO PLAYER
		
		$('a.triggerVideo').click( function(){ 
            var IframeUrl = $(this).attr("href");
			OpenVideoPlayer(IframeUrl);
			return false;
    	});
	
	
	function OpenVideoPlayer(URL)
	{
		
			var ScreenHeight = ($(document).height());
			var VideoLanguage = $("meta[name=language]").attr("content");
			var PopupTitle;
								
			if(VideoLanguage == "en_GB") { PopupTitle = "Mazarrón video"; }
			if(VideoLanguage == "es_ES") { PopupTitle = "Mazarrón vídeo"; }
			if(VideoLanguage == "fr_FR") { PopupTitle = "Vidéo Mazarrón"; }
			if(VideoLanguage == "de_DE") { PopupTitle = "Mazarrón Video"; }
			if(VideoLanguage == "pt_PT") { PopupTitle = "Vídeo Mazarrón"; }
						
			var HTMLOutput = '<div id="PopUpContent"><div class="contentColumn" style="width: 100%; margin-bottom: 0;"><div class="content" style="width: auto;"><div class="contentPadding" style="position: relative; text-align: left;"><h2>'+PopupTitle+'</h2><a href="#" class="closeButton"><!-- --></a><iframe width="634" height="380" src="http://www.youtube.com/embed/4l1PeQfnm54?rel=0" frameborder="0"></iframe></div></div></div></div><div id="FadeBackground"><!-- --></div>';
			
			$("#FadeBackground").remove();
			$("#PopUpContent").remove();
			
			
			
			
			$("body").append(HTMLOutput).stop(true,true);
			
			
			$("#FadeBackground").css({position:"absolute",width:"100%",height: ScreenHeight+"px",top: "0",left: "0",backgroundColor: "#000"}).animate({opacity: 0.8}, 0);
			$("#PopUpContent").css({position:"absolute",top: ($(window).scrollTop()+50)+"px",width: "678px", marginLeft: "-"+(((678+36)/2)-2)+"px"}).stop(true, true).animate({opacity: "show"}, "slow");
				
		
	}

	
    
    $('body,html,.closeButton').click(function(){ 
            
            $("#PopUpContent").animate({opacity: "hide"}, "slow");
            $("#PopUpContent").remove();
			$("#FadeBackground").remove();
			
    });
	
	
});
