$(document).ready(function(){
	$(".submenu").each(function () {
		$(this).parent().eq(0).hover(function (event) {
			
			$(this).children(".submenuLink").css({"background": "#939285", "border": "1px #000000 solid", "color": "#f8dd90"});
			var thisPosTop 		= (($(this).children(".submenuLink").position().top))+18;
			var thisPosLeft 	= (($(this).children(".submenuLink").position().left));
			
			
			$(".submenu:eq(0)", this).css("top", thisPosTop);
			$(".submenu:eq(0)", this).css("left", thisPosLeft);
			$(".submenu:eq(0)", this).slideDown("fast");
		}, function (event) {
			$(".submenu:eq(0)", this).slideUp("fast");
			$(this).children(".submenuLink").css({"background": "transparent", "border": "1px transparent solid", "color": "#ffffff"});
		});
	});
});
