


/*	Light box
	==================================== */

function LightBox() {
	$('a[@rel*=lightbox]').lightBox({
		imageLoading: './images/lightbox-loading.gif',
		imageBtnClose: './images/lightbox-close.gif',
		imageBtnPrev: './images/lightbox-prev.gif',
		imageBtnNext: './images/lightbox-next.gif',
		imageBlank: './images/lightbox-blank.gif'
	});
}


/*	Document ready
	==================================== */

$(document).ready(function() {
	LightBox();
});