  var PrintWindow=null;
  function printIt(printThis)
  {
    PrintWindow = window.open();
    self.focus();
    PrintWindow.document.open();
    PrintWindow.document.write('<'+'html'+'><'+'head'+'><'+'style'+'>');
    PrintWindow.document.write('body, td { font-family: Verdana; font-size: 10pt;}');
    PrintWindow.document.write('<'+'/'+'style'+'><'+'/'+'head'+'><'+'body'+'>');
    PrintWindow.document.write(printThis);
    PrintWindow.document.write('<'+'/'+'body'+'><'+'/'+'html'+'>');
    PrintWindow.document.close();
    PrintWindow.print();
    PrintWindow.close();
  }

/*
window.Current_Page :
			Homepage = 37
			About = 2
			Menu = 4
			Health = 6
			Snifim = 8
			Events = 10
			Mishloah = 111
			Coupon = 12
			Contact = 14
*/
	$(function()
		{
			$('#pane').jScrollPane({showArrows:false, scrollbarWidth: 11, dragMaxHeight: 20, scrollbarMargin:10});
		});

	$(document).ready(function(){
	
		if (Current_Page != 2) $("#nav-about").fadeOut(0);
		if (Current_Page != 4) $("#nav-menu").fadeOut(0);
		if (Current_Page != 6) $("#nav-health").fadeOut(0);
		if (Current_Page != 8) $("#nav-branches").fadeOut(0);
		if (Current_Page != 10) $("#nav-events").fadeOut(0);
		if (Current_Page != 111) $("#nav-mishloah").fadeOut(0);
		if (Current_Page != 12) $("#nav-coupon").fadeOut(0);
		if (Current_Page != 14) $("#nav-contact").fadeOut(0);

		$('#button-about').mouseenter(function(){  
			$("#nav-about").fadeIn("normal");
		});
	
		$('#nav-about').mouseleave(function(){  
			if (Current_Page != 2) $(this).fadeOut("normal");
		});
		
		$('#button-menu').mouseenter(function(){  
			$("#nav-menu").fadeIn("normal");
		});
	
		$('#nav-menu').mouseleave(function(){  
			if (Current_Page != 4) $(this).fadeOut("normal");
		});

		$('#button-health').mouseenter(function(){  
			$("#nav-health").fadeIn("normal");
		});
	
		$('#nav-health').mouseleave(function(){  
			if (Current_Page != 6) $(this).fadeOut("normal");
		});

		$('#button-branches').mouseenter(function(){  
			$("#nav-branches").fadeIn("normal");
		});
	
		$('#nav-branches').mouseleave(function(){  
			if (Current_Page != 8) $(this).fadeOut("normal");
		});

		$('#button-events').mouseenter(function(){  
			$("#nav-events").fadeIn("normal");
		});
	
		$('#nav-events').mouseleave(function(){  
			if (Current_Page != 10) $(this).fadeOut("normal");
		});

		$('#button-mishloah').mouseenter(function(){  
			$("#nav-mishloah").fadeIn("normal");
		});
	
		$('#nav-mishloah').mouseleave(function(){  
			if (Current_Page != 111) $(this).fadeOut("normal");
		});
		
		$('#button-coupon').mouseenter(function(){  
			$("#nav-coupon").fadeIn("normal");
		});
	
		$('#nav-coupon').mouseleave(function(){  
			if (Current_Page != 12) $(this).fadeOut("normal");
		});

		$('#button-contact').mouseenter(function(){  
			$("#nav-contact").fadeIn("normal");
		});
	
		$('#nav-contact').mouseleave(function(){  
			if (Current_Page != 14) $(this).fadeOut("normal");
		});

	});
