// JavaScript Document

$(document).ready(function(){ 
	
	/* BOCADILLOS PIE */
						   
	$(".bocadillos li a").mouseover(function () {
		$('.bocadillo').hide();
		$(this).find('.bocadillo').show();	 
	}).mouseout(function(){
		$('.bocadillo').hide();
	});

	/*BOCADILLOS */

	$(".has_bocadillo").mouseover(function () {
		$('.bocadillo').hide();
		var h = $(this).find('.bocadillo').height()+25;
		$(this).find('.bocadillo').css('top','-'+h+'px');
		$(this).find('.bocadillo').show();	 
	}).mouseout(function(){
		$('.bocadillo').hide();
	}); 
	

	
	

	
	
	
	
/* GOT TO TOP */
	
$(function(){
		   
	$.fn.scrollToTop=function(){
		
		$("#toTop").hide().removeAttr("href"); 
		
		if($(window).scrollTop()!="0"){
			$(this).fadeIn("slow")
		}
		var scrollDiv=$(this);
		
		$(window).scroll(function(){
								  
			if($(window).scrollTop()=="0"){
				$(scrollDiv).fadeOut("slow")
			}else{
				$(scrollDiv).fadeIn("slow")
			}
		
		});
		
		$(this).click(function(){
			$("html, body").animate({scrollTop:0},"slow");
		});
	
	}
			
});

$(function() {
	$("#toTop").scrollToTop();
});


});

	
