// 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/img/loading.gif',
	imageBtnClose: '/common/img/closelabel.gif'
	});

});
