$(document).ready(function($){
	
/* Logo */

$("#img_mas a").hover(
function() {
	$(this).animate({"opacity": "0"}, "slow");
},
function() {
	$(this).animate({"opacity": "1"}, "slow");
});

/* Menu */

/*jQuery("#menu li").hover(
	function() {
		jQuery(this).find('ul:not(:animated)').fadeIn("fast");
		jQuery('ul:first',this).css('visibility', 'visible');
	},
	function() {
		jQuery(this).find('ul:not(:animated)').fadeOut("fast");
		jQuery('ul:first',this).css('visibility', 'hidden');
});*/

/* Sígueme */

/*$(function() {
	$(".sigueme li a").css("opacity","0");
	$(".sigueme li a").hover(function () {
		$(this).stop().animate({
			opacity: 1
		}, 'normal');
	},
	function () {
		$(this).stop().animate({
			opacity: 0
		}, 'fast');
	});
});*/

/*Tooltips*/

/*$(function(){
		   
	$('#carousel_cats ul') 
		.cycle({ 
		   fx:     'scrollHorz', 
		   speed:  1000,
		   timeout: 0,
		   auto:	false,
		   next:   '#next',
		   prev:   '#previous',
		   pause:   1
		   
	});
});*/


/* Novedades */

$('#novedades ul').cycle({ 
	fx: 'scrollVert',
	speed: 650,
	rev: true,
	timeout: 10000,
	next:   '#novedades span.siguiente', 
	prev:   '#novedades span.anterior'
});

/*Sliders*/

$('#slider_p ul').cycle({ 
	fx: 'fade',
	speed: 650,
	rev: true,
	timeout: 5000,
	prev:   '#slider_p span.siguiente_slide'
});

/*Proyector*/
$('#slider_proyector ul').cycle({ 
	fx: 'fade',
	speed: 650,
	rev: true,
	timeout: 5000,
	next:   '#slider_proyector span.anterior', 
	prev:   '#slider_proyector span.siguiente'
});
		 
});
