// DOCUMENT READY
 jQuery(document).ready( function(){ 

	jQuery.localScroll({duration:1500});
	
	if (jQuery(window).scrollTop() != 0){ jQuery("#arriba").fadeIn("normal"); }
	jQuery(window).scroll(function() { if (jQuery(window).scrollTop() == 0){ jQuery("#arriba").fadeOut("normal"); } else{ if (jQuery("#arriba").css("display") == "none"){ jQuery("#arriba").fadeIn("normal"); } } });

	jQuery("#menu li:not(.current_page_item) a").hover(function() {
		jQuery(this).animate({ color:"#fff", backgroundColor:"#333", borderBottomColor:"#333", height:"45px", marginTop:"-5px" }, 750);
		},function() {
		jQuery(this).animate({ color:"#000", backgroundColor:"#ccc", borderBottomColor:"#fff", height:"40px", marginTop:"0" }, 300);
	});
	
	jQuery(".producto, .productline_anchors a, .bits").hover(function() {
		jQuery(this).animate({ color:"#fff", backgroundColor:"#333" }, 500);
		},function() {
		jQuery(this).animate({ color:"#000", backgroundColor:"#ddd" }, 250);
	});
}); 
