jQuery(document).ready(function() {
	jQuery('.load-bg').removeClass('load-bg');
	jQuery('.load-this').removeClass('load-this');
	
	
	loadContents();
//	jQuery(".lightbox").lightBox();
});

function loadContents(){
	var container=  jQuery('#load-contents'),
		href = php_self;
		jQuery('#load-contents').hide();
		
	
		
		var afterLoad= function(){
			
			jQuery.ajax({
			   type: "GET",
			   url: "/js/jquery.lightbox-0.5.min.js",
			   dataType: "script",
			   success: function(){
					jQuery.ajax({
					   type: "GET",
					   url: "/js/tools.js",
					   dataType: "script",
						success: function(){
							jQuery('#load-note').remove();
							jQuery('#load-contents').show();
						}
					 });
				}
			 });
			
			
			jQuery(".lightbox").lightBox();
			
			
		}

		 container.load(''+href+'&unloader #loadable',afterLoad);
	 	 jQuery(".lightbox").lightBox();
	
	return false;
}
