$(document).ready(function()	{ 

  /*  menu */  
   $("ul#menu_top_ul li:last-child a").addClass("noborder"); 
   $("div#menu_left li:last-child").addClass("noborder"); 
   $("div#menu_bottom li:last-child").addClass("noborder"); 
   
   

 
 /* menu */
	 
	/* hover - submenu a pozadi */
	$('#menu ul li').hover(
			function() { 
        if($('li',this).length) $('.hidesubmenu', this).css('display', 'block'); 
        $('a.menu_link',this).css( 'background-color','#e2001b');
        },
			function() { 
        $('.hidesubmenu', this).css('display', 'none');
        if (!($(this).hasClass('menuon')))  $('a.menu_link',this).css( 'background-color','transparent'); 
        }
       );
       
	/* photogallery */
	$("a[rel^='prettyPhoto']").prettyPhoto({
			theme: 'facebook',
      overlay_gallery: true 
		});        	
  	
   // resize reload;
/*$(window).bind('resize',function(){
     window.location.href = window.location.href;
});

  */
  /* cycle */
 if ($('#cycle').length) $('#cycle').cycle({		fx: 'fade'	});
//  $('#news-cycle').cycle({		fx: 'fade'	});
  /*  menu */
//  $("div#menu_top li:last-child").addClass("noborder"); 
        
});


	  
  
