var HoverMenu = {
	init: function(targetClass) {
		jQuery(targetClass + " em").each(
			function() {
				jQuery(this).css("top", ("-" + (jQuery(this).outerHeight() + 10) + "px"));
			}
		);
		
		jQuery(targetClass + " a").hover(function() {
			var nextEm = jQuery(this).next("em");
			nextEm.animate({opacity: "show", top: "-" + nextEm.outerHeight() + "px"}, "slow");
			jQuery("#results-wrapper select").addClass("selectbox-wrapper-hide");
			 
		}, function() {
			var nextEm = jQuery(this).next("em");
			jQuery(this).next("em").animate({opacity: "hide", top: "-" + (nextEm.outerHeight() + 10) + "px"}, "fast");
			jQuery("#results-wrapper select").removeClass("selectbox-wrapper-hide");
		
		});
	}
}

