// JavaScript Document
function lands_jquery(){
	$(document).ready(function() {
   		$("a.swap_img").mouseover(function() {
			var new_src = $(this).find("img").attr("src").replace(/_off/,"_on");
			$(this).find("img").attr({ 
          		src: new_src
        	});
		});
		
		$("a.swap_img").mouseout(function() {
			var new_src = $(this).find("img").attr("src").replace(/_on/,"_off");
			$(this).find("img").attr({ 
          		src: new_src
        	});
   		});
		
		// when a gallery will be added to tel-Aviv site, We (Anna...) should fix the js error in E6
		if (document.getElementById("td_gallery")) {	
			$(".ICD_Navigator").appendTo("#page_navigator");
		}
		
 	});
}

