// when DOM is ready
$(document).ready(function()
{
	// BEGIN MOUSEOVER
	var temp = '';
	$('#gallery a img').hover( function()
	{
		temp = $(this).attr('src');
		$(this).attr('src', 'uploads/work/small/' + $(this).attr('rel') );
	},function()
	{
		$(this).attr('src', temp);
	});
	// END MOUSEOVER
});
