$(document).ready(function() {
	
	$('ul.thumbs a').mouseover(function() {
		var title = $(this).attr('title');
		var sp = $('span', $(this));
		if (sp.length > 0) {
			$('span', $(this)).css('display', 'block');
		}
		else {
			if (title && title != '') {
				$(this).append('<span>' + title + '</span>');
			}
		}
		$('img', $(this)).css('opacity', 0.5);
	});
	
	$('ul.thumbs a').mouseout(function() {
		$('span', $(this)).css('display', 'none');
		$('img', $(this)).css('opacity', 1);
	});
	
});
