$(document).ready(function(){
	
	/* EDIFICIOS */
	
	ancho =$(window).width();	
		
	$('#paisName h1').mouseover(function(){
		$(this).css('list-style-image','url(content/img/estrellita.jpg)');
	});
	$('#paisName h1').mouseout(function(){
		$(this).css('list-style-image','');
	});
	
	
	/**/
	$('#lightBox').hide();
	$('#backLigth').hide();
	$('#contVideo').hide();
	$('#closeBtn').hide();
	
	$("#videoSign").bind('click', function(){
		fadeStatus = true;
		$('#lightBox').show();		
		$('#backLigth').stop().animate({opacity: 0}, 0);
		$('#backLigth').stop().animate({opacity: 0.8}, 400,function(){
			$("#contVideo").append('<object style="height: 390px; width: 640px"><param name="movie" value="http://www.youtube.com/v/lB91fWr8v-g?version=3&feature=player_detailpage&autoplay=1"><param name="allowFullScreen" value="true"><param name="allowScriptAccess" value="always"><embed src="http://www.youtube.com/v/lB91fWr8v-g?version=3&feature=player_detailpage&autoplay=1" type="application/x-shockwave-flash" allowfullscreen="true" allowScriptAccess="always" width="640" height="360"></object>');
   		    $("#contVideo").show();
			$('#closeBtn').show();
		});		
	});	
	
	$("#btnVideo2").bind('click', function(){
		fadeStatus = true;
		$('#lightBox').show();		
		$('#backLigth').stop().animate({opacity: 0}, 0);
		$('#backLigth').stop().animate({opacity: 0.8}, 400,function(){
			$("#contVideo").append('<object style="height: 390px; width: 640px"><param name="movie" value="http://www.youtube.com/v/lB91fWr8v-g?version=3&feature=player_detailpage&autoplay=1"><param name="allowFullScreen" value="true"><param name="allowScriptAccess" value="always"><embed src="http://www.youtube.com/v/lB91fWr8v-g?version=3&feature=player_detailpage&autoplay=1" type="application/x-shockwave-flash" allowfullscreen="true" allowScriptAccess="always" width="640" height="360"></object>');
   		    $("#contVideo").show();
		});		
	});	
	
	$('#lightBox').bind('click', function(){
		if(fadeStatus){
			fadeStatus = false;
			$('#contVideo').removeData().empty();
			$('#lightBox').hide();
			$('#backLigth').hide();			
			$('#contVideo').hide();
			$('#closeBtn').hide();
		}
	});	
	
	$('#closeBtn').bind('click', function(){
		if(fadeStatus){
			fadeStatus = false;
			$('#contVideo').removeData().empty();
			$('#lightBox').hide();
			$('#backLigth').hide();			
			$('#contVideo').hide();
			$('#closeBtn').hide();
		}
	});	
	
	});
