
/*--------------------------------------
	jQuery Config
--------------------------------------*/


jQuery(document).ready(function($) {
// jquery_superfish.js
	$("#global-nav ul").superfish();
	$("#global-nav li").bind("mouseenter",function() {
		$(this).addClass("hover");
	}).bind("mouseleave",function() {
		$(this).removeClass("hover");
	});
});

