/**
 * @author adam
 */

$(document).ready(function() {

	$('.blank').blankTarget();
	
	$('#gca').hover(function() {
		$(this).attr('src', $(this).attr('src').replace(/.gif/, '_hover.gif'));
	}, function() {
		$(this).attr('src', $(this).attr('src').replace(/_hover.gif/, '.gif'));
	});
});

