$(function () {
	
	$('.dropdown').each(function () {
		$(this).parent().eq(0).hover(function () {
			$('.dropdown:eq(0)', this).fadeIn(200);
		}, function () {
			$('.dropdown:eq(0)', this).fadeOut(300);
		});
	});
});




