$(document).ready(function(){
		
		$('.arriba_button').click(function () { 
		  window.scrollTo(0,0);
		  return false;
		});
		
		$('#nav li').hover(function(){
		  $(this).find('.subnav').show();
		},function(){
		  $(this).find('.subnav').hide();
		});
		
		$('#nav .subnav span').hover(function(){
		  $(this).addClass('bg_no');
		  $(this).find('strong').addClass('over');
		},function(){
		  $(this).removeClass('bg_no');
		  $(this).find('strong').removeClass('over');
		});
		
		
	});


