$(document).ready(function(){

   $("#aboutUs").hover(
		function () {

			$("#header").css("background-position","0 -1080px");
			$(this).siblings().find(".current > a").removeClass("active");
			$('#lang_en').addClass('lang-color');
		}, 
		function () {

			$("#header").removeAttr("style");
			$(".current > a").addClass("active");
			$('#lang_en').removeClass('lang-color');
		}
	);
   $("#israel").hover(
		function () {
			$("#header").css("background-position","0 -864px");
			$(this).siblings().find(".current a").removeClass("active");
		}, 
		function () {
			$("#header").removeAttr("style");
			$(".current a:first").addClass("active");
		}
	);
   $("#innovate").hover(
		function () {
			$("#header").css("background-position","0 -648px");
			$(this).siblings().find(".current a").removeClass("active");
		}, 
		function () {
			$("#header").removeAttr("style");
			$(".current a:first").addClass("active");
		}
	);
   $("#press").hover(
		function () {
			$("#header").css("background-position","0 -432px");
			$(this).siblings().find(".current a").removeClass("active");
		}, 
		function () {
			$("#header").removeAttr("style");
			$(".current a:first").addClass("active");
		}
	);
   $("#contact").hover(
		function () {
			$("#header").css("background-position","0 -216px");
			$(this).siblings().find(".current a").removeClass("active");
		}, 
		function () {
			$("#header").removeAttr("style");
			$(".current a:first").addClass("active");
		}
	);
});
