$(document).ready( function(){

	$('div#menu div.link').hover( 

		function(){

			$(this).children('a').children('span.title').animate( {
				fontSize: '19px',
				lineHeight: '21px',
				marginTop: '8px'
			} );

			// submenu de A CASA
			if( $(this).hasClass('casa') ){
				$(this).children('a').fadeOut('slow');
				$(this).children('ul').fadeIn('normal');
			} else {
				$(this).children('a').children('span.sub').fadeOut('slow');
			}
		
			$(this).children('div.effect').children('div.img').fadeIn('fast');
		},

		function(){
		
			$(this).children('a').children('span.title').animate( {
				fontSize: '17px',
				lineHeight: '18px',
				marginTop: '0px'
			} );

			// submenu A CASA
			if( $(this).hasClass('casa') ){
				$(this).children('a').fadeIn('slow');
				$(this).children('ul').fadeOut('normal');				
			} else {
				$(this).children('a').children('span.sub').fadeIn('slow');
			}
		
			$(this).children('div.effect').children('div.img').fadeOut('fast');
		}
	);
});
