(function($) {
	$(document).ready( function() {
		$('#cuisineCategories li a').hover(
			function() {
				$('.food_alt', this).addClass( 'hover' );
				$('.food_alt', this).fadeIn(300);
			},
			function() {
				$('.food_alt', this).removeClass( 'hover' );
				$('.food_alt', this).fadeOut(150);
			}
		);
	} );
})(jQuery);

