$(document).ready(function(){	$('.thumbnails a').click(function(){		$img = $(this).children('img');				$('#full-image').attr('src', $img.attr('src').replace('-thumb',''));		window.location.hash = 'top';		window.location.hash = 'full-image';				return false;	});});