	$(document).ready(function()	{ 
  /*  menu */
   $("div#menu_left li:last-child").addClass("noborder"); 
     $("div#menu_bottom li:last-child").addClass("noborder"); 
   
	/* photogallery */
	$("a[rel^='prettyPhoto']").prettyPhoto({
			theme: 'light_square' /* light_rounded / dark_rounded / light_square / dark_square */
		});

    
    
/* print*/         
  	$("a#print_button").click(function() {
      window.print(); 	
  	});
  		$("a#tisknout-stranku").click(function() {
      window.print(); 	
  	});
  /* news*/
   $(".news_info:last-child").addClass("noborder"); 
   $('div.hide').hide();
   $('a.onclick').click(function() {
    $(this).prev().slideToggle('fast');
		if ($(this).html()=="[+]") {
			 $(this).html("[-]");
			 return false;
			 }
		if ($(this).html()=="[-]") $(this).html("[+]");
		return false;
  });

/* email */
$("#email").focus(function() {this.value='';	return false;})
$("#name").focus(function() {this.value='';	return false;})
$("#input").focus(function() {this.value='';	return false;})
  /* notice */
   $("#dialog").dialog({
			height: 80,
			modal: true,
			buttons: {
				Ok: function() {
					$(this).dialog('close');
				}
			}
		});
 


});



