jQuery(document).ready(function(){

	// TOP NAVIGATION MENU
	jQuery("#topCategory > li.has-sub, #topCategory > li.has-sub > ul.sub_nav > li.has-sub").hover(
	function(){
		jQuery(this).find("> .sub_nav").animate({height: 'toggle'}, 100);
	},
	function(){
		jQuery(this).find("> .sub_nav").hide();
	});
});

