/**
 * @author derek.mattson
 */
$(document).ready(function()
{
	//Your code goes here
	$('.bollboardContent ul li a').bind('mouseenter', function()
	{
		var $source = $(this).children().attr('src');
		var $sourceLength = $source.length;
		var $newSource;
		
		$source = $source.substring(0, ($sourceLength - 4));
		
		$newSource = $source + "_large.png"
		
		$('.bollboardImages img').attr('src', $newSource);
		
	});
});
