window.onload = function(){
	$('a[rel="fancybox"]').hover( function() {
		if( $(this).find('div').length == 0 ){
			$(this).append('<div><strong>' + $(this).find('img').attr('alt') + '</strong></div>');
		}
		$(this).find('div').stop(true).fadeTo('fast', 1);
	}, function () {
		$(this).find('div').stop(true).fadeTo('fast', 0);
	});
};

