
function enlargeImage(imagePath) {
	$("#bigImg").html("<img id=\"modalImg\" src=\"" + imagePath + "\" />");

	$("#bigImg").modal({position: [50,80]});
	
	$("#modalImg").load(function(){
		$("div#simplemodal-container").width($("#modalImg").width() + 100);
		$("div#simplemodal-container").height($("#modalImg").height() + 100);
	});
	
	//$("div#simplemodal-container").css("padding", "50px");
	//$("div#simplemodal-container").css("background-color", "#fff");
}

/*
function enlargeImage(imagePath) {

	$.modal("<img  src=\"" + imagePath + "\" />", {position: [50,80]});

	$("div#simplemodal-container").css("padding", "50px");
	$("div#simplemodal-container").css("background-color", "#fff");

	
	
}
*/
