jQuery().ready(function() {
	var current = $(".selected").position().left;
	$(".menu-bg").css("left",current);
	
	$("#submenu ul li a").hover(function () {
		var target = $(this).position().left;
		$(".menu-bg").stop().animate( {left: target}, "slow");
		},
		function () {
			$(".menu-bg").stop().animate({
			left: current
		}, "slow");
	});
	
	$("#submenu ul li ul li a").hover(function () {
		var target = $(this).parent().parent().position().left;
		$(".menu-bg").stop().animate( {left: target}, "slow");
		},
		function () {
			$(".menu-bg").stop().animate({
			left: current
		}, "slow");
	});
	
	$(".menu-drop").hover(function () {
		$(this).children("ul").stop().show();
		},
		function () {
			$(this).children("ul").stop().hide();
	});
}); 
