function checkErihinnadPage() {
  if(window.location.href.indexOf("erihinnad.html") <= -1) {
		return true;
	} else {
		return false;
	}
}

$(function() {
	 if(checkErihinnadPage()){
		$("#menu").hide();
		setTimeout('$("#menu").fadeIn("slow")', 1000);
	} else {
        $("#menu").show();
	}
	//do not add hover to "erihinnad.html" page
  if(checkErihinnadPage()) {
		$("#menu img:eq(0)").bind("mouseover", function() {
			$(this).attr("src", "img/l_erihinnad_hover.gif");
		});
		$("#menu img:eq(0)").bind("mouseout", function() {
			$(this).attr("src", "img/l_erihinnad.gif");
		});
  }
});
