$(document).ready(function(){
	
	$("#slidePoliu").easySlider({
		auto: true,
		continuous: true
		});
	
	$('.twitter').add('.facebook').add('.tumblr').add('.btnYourhome').add('.btnYourhome').tipsy();
	
	$("#maiNav li").add('#menuH li').hover(function(){
			$(this).find('div').fadeTo(300, 0); // This should set the opacity to 100% on hover
		},function(){
			$(this).find('div').fadeTo(300, 1); // This should set the opacity back to 60% on mouseout
		});
	
	$("#topLogo li").hover(function(){
			$(this).animate({ left: '+=20'});
			$(this).find('div').fadeTo(300, 1); // This should set the opacity to 100% on hover
		},function(){
			$(this).animate({ left: '-=20'});
			$(this).find('div').fadeTo(300, 0); // This should set the opacity back to 60% on mouseout
		});
	
	//centra la paginacion
	var totalWidth = 0;

	$("#btns").children().each(function() {
		  totalWidth = ($(this).width()* $("#btns").children().size()+36);
	});
	
	$("#btns").css({
			"position":"absolute",
			"left":"50%",
			marginLeft:"-"+totalWidth/2+"px"
			});

	activeLink("maiNav");
	
	getCheckoutShipping();

});
