jQuery(function ($) {
	/* You can safely use $ in this code block to reference jQuery */
$(function () {
	
	$('.dropdown').each(function () {
		$(this).parent().eq(0).hover(function () {
			$('.dropdown:eq(0)', this).show();
		}, function () {
			$('.dropdown:eq(0)', this).hide();
		});
	});
});
});

