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