function hover(e)
 {
	tmp = e.src;
	tmp2 = e.src.replace(/0/,"1");
	e.src = tmp2;
	return true;
	 }

function unhover(e)
{
	e.src = tmp;
	return true;
	}

function refreshCam()
 {
	  $.ajax({
	  url: url + 'site/getPhoto',
	  cache: false,
	  success: function(html){
	  $("#plac").html(html);
	   }
	  });
  }

$(document).ready(function(){
   setInterval('refreshCam()',10000);					   
   $(".lightbox").lightbox();
   $('#print_img').click(function()
						{
							var print_win = window.open('','Drukowanie','menubar=yes, toolbar=no, location=no, scrollbars=yes, resizable=yes, status=no,width=650,height=500');
							print_win.document.open();
							print_win.document.write('<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"><html><head><title>Drukowanie...</title><meta http-equiv="Content-Type" content="text/html; charset=utf-8"><link rel="stylesheet" type="text/css" href="http://www.margomedia.home.pl/pietrotest/css/pietrowice_print.css" media="screen" /></head><body onload="setTimeout(function(){this.print();},1500)">' + $('#druk').html() +'</body></html>');
							print_win.document.close();
							//setTimeout(function(){print_win.close();},2500);
						});
/*						
	var id = 'klk_2';
	$(document).ready(function(){
		$(".rozw").click(function(){
			if(this.id != id)
			{
				$(".l_cont").slideUp(500);
				$(".rozw").css({ backgroundImage:"url('http://www.margomedia.home.pl/pietrotest/img/arrow_menu_1.gif')" });
				$(this).css({ backgroundImage:"url('http://www.margomedia.home.pl/pietrotest/img/arrow_menu_up_1.gif')" });
			}
			$("#"+this.id+"_cont").slideToggle(500);
			id = this.id;
		}).toggle(function() { $(this).css({ backgroundImage:"url('http://www.margomedia.home.pl/pietrotest/img/arrow_menu_up_1.gif')" });}, function() { $(this).css({ backgroundImage:"url('http://www.margomedia.home.pl/pietrotest/img/arrow_menu_1.gif')" }); });
	}); 
	
	var id2 = 0;
	$(document).ready(function(){
		$(".rozw_sub").click(function(){
			if(this.id != id2)
			{
				$(".l_contsub").slideUp(500);
				$(".rozw_sub").css({ backgroundImage:"url('http://www.margomedia.home.pl/pietrotest/img/arrow_menu_0.gif')" });
				$(this).css({ backgroundImage:"url('http://www.margomedia.home.pl/pietrotest/img/arrow_menu_up_0.gif')" });
			}
			$("#"+this.id+"_cont").slideToggle(500);
			id2 = this.id;
		}).toggle(function() { $(this).css({ backgroundImage:"url('http://www.margomedia.home.pl/pietrotest/img/arrow_menu_up_0.gif')" });}, function() { $(this).css({ backgroundImage:"url('http://www.margomedia.home.pl/pietrotest/img/arrow_menu_0.gif')" }); });
	});	*/
	
 });
