$(function(){
	
	$(".photos li a")
	.each(function(){
		$(document).append('<img style="display: none" src="'+$(this).attr("href")+'" />');
	})
	.click(function(e){
		$("#bigPhoto").attr("src", $(this).attr("href"));
		(e.preventDefault) ? e.preventDefault() : (e.returnValue = false);
	});
	
});
