$(document).ready(function(){
   $("#aboutUs").hover(
		function () {
			$("#header").css("background-position","0 -216px");
			$(this).siblings().find(".active").removeClass("active");
		},
		function () {
			$("#header").removeAttr("style");
			$(".current > a").addClass("active");
		}
	);
   $("#israel").hover(
		function () {
			$("#header").css("background-position","0 -432px");
			$(this).siblings().find(".active").removeClass("active");
		}, 
		function () {
			$("#header").removeAttr("style");
			$(".current > a").addClass("active");
		}
	);
   $("#innovate").hover(
		function () {
			$("#header").css("background-position","0 -648px");
			$(this).siblings().find(".active").removeClass("active");
		}, 
		function () {
			$("#header").removeAttr("style");
			$(".current > a").addClass("active");
		}
	);
   $("#press").hover(
		function () {
			$("#header").css("background-position","0 -864px");
			$(this).siblings().find(".active").removeClass("active");
		}, 
		function () {
			$("#header").removeAttr("style");
			$(".current > a").addClass("active");
		}
	);
   $("#contact").hover(
		function () {
			$("#header").css("background-position","0 -1080px");
			$(this).siblings().find(".active").removeClass("active");
		}, 
		function () {
			$("#header").removeAttr("style");
			$(".current > a").addClass("active");
		}
	);
});