$(document).ready(function(){
/*************************************
	BY CATEGORY MEGA MENU
**************************************/
	$("#by_category").hover(
	function(){
		$(this).addClass("by_category_hover");
		$("#by_category .mega").show();
	},
	function(){
		$(this).removeClass("by_category_hover");
		$("#by_category .mega").hide();
	});
		
/*************************************
	BY AGE MEGA MENU
**************************************/
	$("#by_age").hover(
	function(){
		$(this).addClass("by_age_hover");
		$("#by_age .mega").show();
	},
	function(){
		$(this).removeClass("by_age_hover");
		$("#by_age .mega").hide();
	});

/*************************************
	TOP RATED MEGA MENU
**************************************/
	$("#top_rated").hover(
	function(){
		$(this).addClass("top_rated_hover");
		$("#top_rated .mega").show();
	},
	function(){
		$(this).removeClass("top_rated_hover");
		$("#top_rated .mega").hide();
	});
	
/*************************************
	CURRENT SPECIALS MEGA MENU
**************************************/
	$("#current_specials").hover(
	function(){
		$(this).addClass("current_specials_hover");
		$("#current_specials .mega").show();
	},
	function(){
		$(this).removeClass("current_specials_hover");
		$(" #current_specials .mega").hide();
	});

	
});/*CLOSING BRACKETS*/