// LightBox

$(function() {
	var arr = $('img[alt]');
	$.each(arr,function(key,value){
	var Alt = $(value).attr('alt');
	$(value).parent('[href]').attr('title',Alt);
	});
	
	$('a img').parent('[href$="jpg"],[href$="gif"],[href$="png"],[href$="JPG"],[href$="GIF"],[href$="PNG"]').lightBox({
	imageLoading: '../common/lightbox/loading.gif',
	imageBtnClose: '../common/lightbox/closelabel.gif'
	});

});

