
$(document).ready(function(){
	$(".previewCtn").click(function(){
		var divID = $(this).attr("id");		
		$.ajax({
			  type: "GET",
			  url: "/loadpreview/",
			  cache: false,
			  success: function(msg){
				 $('#' + divID).html(msg);
			   }
			});
		
	});
});