//Listo el documento:
$(document).ready(function(){
						   				   
	//Hover Menu		   
	$('#menu a')
		.css( {backgroundPosition: "0 0"} )
		.mouseover(function(){
			$(this).stop().animate(
				{backgroundPosition:"(0 -58px)"}, 
				{duration:400})
			})
		.mouseout(function(){
			$(this).stop().animate(
				{backgroundPosition:"(0 0)"}, 
				{duration:400})
			})
		
	$('#menu li:last-child').css({'border-right' : 'none', 'padding' : '0'})
	
	
	//Slider Header
	$("#slider").easySlider({
		auto: true,
		continuous: true, 
		controlsShow: false,
		speed: 800,
		pause: 5000
	});
	
	//FancyBox
	$(".post_image a").fancybox({
		'zoomSpeedIn': 300,
		'zoomSpeedOut': 300,
		'overlayShow': true,
		'overlayOpacity': 0.6
	});
	
	//Append lupa
	$(".post_image").each(function(){
		var img_height = $(this).find("img").attr("height");
		$(this).find("a").append('<span style="height:'+img_height+'px;"></span>');
	});
	//Animate Lupa
	$(".post_image a span").animate({opacity: "0.6"},0);
	$(".post_image a span").mouseover(function() {
		$(this).stop().animate({opacity: "1"}, 500)
		}).mouseout(function(){
      	$(this).stop().animate({opacity: "0.6"}, 500);
    });
	

});
