jQuery(function(){
	jQuery('#mainnav li').mouseenter(function () {
		jQuery(this).find('ul').eq(0).addClass('open').show().dropShadow();
	});
	jQuery('#mainnav li').mouseleave(function () {
		jQuery(this).find('ul').eq(0).removeClass('open').hide().removeShadow();
	});
});