/*
	@version 1.0
*/

function gallery()
{
	$('#thumbnails li a img').each(function()
	{
		$(this).hover(
			function() {
				$(this).css('border', '1px solid #FFF');
				var image_source = $(this).attr('src').replace(/images/gi, '').replace(/\//gi, '');
				$('#current_image img').attr('src', '/images/' + image_source);
			},
			function() { $(this).css('border', '1px solid #ECE003');
	});
	});
}

$(document).ready(function() { gallery(); });
