﻿$(document).ready(function() {
	//slider principal
	$(".vestidos").cycle({
        fx: "fade",
        timeout: 0,
        next: "#navigation .right",
        prev: "#navigation .left",
        speed: 800
    });
    
    $("ul#share-list li img").bubbleup();
    
    $("#footer .social a").hover(function(){
		$(this).stop().animate({opacity: 0.6},{queue:false,duration:150});
	}, function(){
	    $(this).stop().animate({opacity: 1},{queue:false,duration:350});
	});
	
	$("#columns .col").click(function(){
         window.location=$(this).find("a").attr("href");
         return false;
    });
    
    //Agregar el color de fondo para que no se ponga blanco el coso al dar hover
    $("#columns .col").css({"background-color" : "#595555"});
    
    $("#columns .col").hover(function(){
        $(this).stop().animate({ backgroundColor: "#656060"}, 700);
        $(this).find("a").addClass("hover");
    }, function(){
        $(this).stop().animate({ backgroundColor: "#595555"}, 250);
	    $(this).find("a").removeClass("hover");
	});
});


