/*  -- Top Navigation Dropdown --  */

jQuery(document).ready(function(){
	jQuery("#topDropdownNav li").hover(function(){
		jQuery(this).addClass("active");
		jQuery(".subnav", this).show();
	}, function(){
		jQuery(this).removeClass("active");
		jQuery(".subnav", this).hide();
	});
});

jQuery(document).ready(function(){
	jQuery("#topDropdownNav-2 li").hover(function(){
		jQuery(this).addClass("active");
		jQuery(".subnav", this).show();
	}, function(){
		jQuery(this).removeClass("active");
		jQuery(".subnav", this).hide();
	});
});

/*  -- End Top Navigation Dropdown --  */

