 
$(document).ready(function () {
   
   // menu click 
    $(".menu_item").each(function() {
  
      $(this).click(function() {          
          window.location.href = '/index.php?id=' + this.id.replace('menu_item_', '');        
      }); 
       
    });
    
    $(".menu_item_search").each(function() {
  
      $(this).click(function() {          
          window.location.href = '/index.php?id=' + this.id.replace('menu_item_', '');        
      }); 
       
    });
    // ----------
    
 
  
   
 
 
 
 
			$("a[rel^='prettyPhoto']").prettyPhoto({
        
        theme: "dark_rounded"
      }); 
 

     $(document)[0].oncontextmenu = function() {return false;} 
     
     
     $('img').mousedown(function(e) {
     
        e.preventDefault();
     });
     
     $('img').mousemove(function(e) {
     
        e.preventDefault();
     });
          
      
     $(".thumbs").lazyload({         
         placeholder : "/img/prettyPhoto/dark_rounded/loader.gif",
          effect : "fadeIn"  ,
          event : "sporty" 
                  
     });  
     
    $(window).bind("load", function() { 
        var timeout = setTimeout(function() {$(".thumbs").trigger("sporty")}, 1000);
    }); 
     
 


   
});
