
$(function() {
	
	$("a.thumbs").click(function() {
		if($("#big_pic img").length == 0) {
			$("#big_pic").append("<img src='" + $(this).attr('rel') + "'/>");
		}
		else {
			$("#big_pic img").remove();
			$("#big_pic").append("<img src='" + $(this).attr('rel') + "'/>");
		}
	});


});


