
/*-----------------
 Image swap
-----------------*/


$().ready(function() {		   
	$('#thumbs a').each(function(i) {
		$(this).click( function(e) {
			e.preventDefault();
			$('#photo').attr('src','/img/gallery/gallery'+(i+1)+'.jpg');
		});
	});
});