$(function() {
    $("#menu-top").lavaLamp({
        fx: "backout",
        speed: 300         
    });
    $('#image-cycle').cycle({
		fx: 'fade',
		speed:  500,
		timeout: 3000,
		random: 1
	});
    $('#front .front-oferta a').bind('mouseenter', function(){
    	$(this).find('img').animate({'opacity' : '0'}, 250);
    });
    $('#front .front-oferta a').bind('mouseleave', function(){
    	$(this).find('img').animate({'opacity' : '1'}, 250);
    });
});