lb_settings = {// Configuration related to images
			imageLoading:			bpath+'java/images/lightbox-ico-loading.gif',		// (string) Path and the name of the loading icon
			imageBtnPrev:			bpath+'java/images/lightbox-btn-prev.gif',			// (string) Path and the name of the prev button image
			imageBtnNext:			bpath+'java/images/lightbox-btn-next.gif',			// (string) Path and the name of the next button image
			imageBtnClose:			bpath+'java/images/lightbox-btn-close.gif',		// (string) Path and the name of the close btn
			imageBlank:				bpath+'java/images/lightbox-blank.gif'			// (string) Path and the name of a blank image (one pixel)
			};
$(document).ready(function(){
    loaded_location();
	
         
	//$('.gallery a').lightBox(lb_settings);
});
function loaded_location(){
    $('a[rel*=lightbox]').lightBox(lb_settings);

    //$('#is_tabs').tabs({ fxFade: true, fxSpeed: 'fast'});
    
}


