$(document).ready(function(){


	$('.title').mouseover(function(){

		$(this).css('background-color','#00CCFF');

		$(this).css('color','#000');

	});

	$('.title').mouseout(function(){

		var opc = $('#' + $(this).attr('name')).css('display');

		if(opc == 'none'){

			$(this).css('background-color','#418BBA');

			$(this).css('color','#fff');

		}

	});

	$('.title').click(function(){

		var title = this;
		

		$('.divToggle:visible').slideUp('slow',function(){

			$(title).css('background-color','#418BBA');

			$(title).css('color','#fff');
	
		});
		
		//$('.tag_comidas_tit:hidden').fadeIn('slow');

		
		
		//$('#com_' + $(this).attr('name') + ':visible').fadeOut('slow');


		$('#' + $(this).attr('name') + ':hidden').slideDown('slow',function(){

			$('.title').each(function(){

				$(this).css('background-color','#418BBA');

				$(this).css('color','#fff');
											
			})
			
			$(title).css('background-color','#00CCFF');

			$(title).css('color','#000');
			
			
		});		

	});

});
