// JavaScript Document
function zoom(id) {
	$("#zoom"+id).show();	
	$("#zoom"+id).css("width", $("#big"+id).width());
	$("#zoom"+id).css("height", $("#big"+id).height()+20);
	$("#zoom"+id).css("margin-left", ($("#big"+id).width()/2)*(-1));
}

function unzoom(id) {
	$("#zoom"+id).hide("slow");	
}
