$(function(){
	$('#wrap').height($(document).height());
	
	$('#showcase li').hover(
		function(){
			var src = $('img', $(this)).attr('src');
			var newSrc = src.replace('-bl.png', '.png');
			$('img', $(this)).attr('src', newSrc);
		},
		function(){
			var src = $('img', $(this)).attr('src');
			var newSrc = src.replace('.png', '-bl.png');
			$('img', $(this)).attr('src', newSrc);	
		}
	);
})