Application = {
  init: function() {     
    /**
     * Lightbox
     */
  	jQuery("a[class=lightbox]").lightBox({
  	  multipleImages: false
  	});
  	jQuery(".photogalery a[class=lightbox]").lightBox({
  	  multipleImages: true
  	});
  	
  	jQuery("div[id=tabs]").tabs();
  	
  	jQuery("form[id=find] a").bind( "click", function() {
  	  jQuery(this).parent().submit();
  	  return false;
  	});
  	
  	if(screen.width <= 1024 )
      jQuery("body").attr("id","container_1024res");
    else if(screen.width <= 1280 )
      jQuery("body").attr("id","container_1280res");
    else if(screen.width <= 1440 )
      jQuery("body").attr("id","container_1440res");
    else if(screen.width <= 1680 )
      jQuery("body").attr("id","container_1680res");
    else if(screen.width <= 1920 )
      jQuery("body").attr("id","container_1920res");

  }
}

