jQuery.noConflict();
jQuery(function($) 
{
	CB.init($);
});

var CB = 
{
	init:function($)
	{
		this.lightBox($);
	},
	
	lightBox:function($)
	{
		if($('.gallery').length)
		{
			$("a[rel='lightbox']").lightBox({
	        	imageLoading: 'mysite/javascript/jquery-lightbox/images/lightbox-ico-loading.gif', // (string) Path and the name of the loading icon
	        	imageBtnPrev: 'mysite/javascript/jquery-lightbox/images/lightbox-btn-prev.gif', // (string) Path and the name of the prev button image
	        	imageBtnNext: 'mysite/javascript/jquery-lightbox/images/lightbox-btn-next.gif', // (string) Path and the name of the next button image
	        	imageBtnClose: 'mysite/javascript/jquery-lightbox/images/lightbox-btn-close.gif', // (string) Path and the name of the close btn
	        	imageBlank: 'mysite/javascript/jquery-lightbox/images/lightbox-blank.gif'
    		});
		}
	}
}