$(document).ready(function() {
	$('#thumbs tr td').each(function(){
		$(this).mouseover(function(){
			//get the id for this image
			var myId = $(this).attr('id');
			var mySplit = myId.split("_");
			
			//change the big image
			$('#bigImg').attr('src', '/client/img/portfolio/'+ mySplit[1] +'.jpg');
			
			//change the photo credit
			var myText = $('li#photo_' + mySplit[1]).html();
			$('#photoCredit').attr('src', '/client/lib/makeImage.php?text=' + myText);
			
		});
	});
});