$(document).ready(function() {
	
	$(".highersitesgroup").hover(function () {
		$("#dropdown")
			.stop(true, true)
			.fadeTo("fast", 1)
			.addClass("visible")
			.hover(function () {
				},
				function () {
					$(this).stop(true, true).fadeTo("slow", 0).removeClass("visible");
				});
			
	});

});
