$(document).ready(function()
{
	$('.gallery2 img').mouseover(function()
	{
		$('#my_project_image').attr('src', $(this).attr('src').replace(/_thumb/, ''));
	});
});

