
	$().ready(function() {

		// navigation js
		$("#navigation ul li").hover(function() {
			$("#navigation ul li").css("background-position","top left");
			$(this).css("background-position","top right");
			$(this).find(".dropdown").stopAll();
			//$(this).find(".dropdown").slideDown("slow");
			$(this).find(".dropdown").show("slide", { direction: "left" }, 1000);

		},function() {
			$(this).find(".dropdown").stopAll();
			if(!$(this).find(".dropdown").is(":hidden")) {
				$(this).css("background-position","top left");
				//$(this).find(".dropdown").slideUp("fast");
				$(this).find(".dropdown").hide("slide", { direction: "left" }, 1000);
			}
			$("#navigation ul li#current").css("background-position","top right");
		});
		



		$("input#e-submit").hover(function() {
			$(this).attr("src","images/layout/btn_submit_on.gif");							 
		},function() {
			$(this).attr("src","images/layout/btn_submit_off.gif");
		});
	  
	});
	
