$(document).ready(function(){
	$('#Header .menu-departamento ul').hover(function(){ 
       $(this).prev().find('a').addClass('h3hover');   
}, function(){
       $(this).prev().find('a').removeClass('h3hover');
});
})
