var clicked=0;

function zoompage(id)
{
    //_level0.myBook.fpage_4
	var ttt = id.split("_level0.myBook.fpage_");

	$('#img_preloader').html("<p id='content_loading'>Loading...</p>");

	jQuery.ajax({
		type: "GET",
		url: 'gateway.php',
		cache: false,
		data: "id="+ttt[1],
		success: function(msg){
			$('#img_container').html(msg);
			$("#img_preloader").hide();
			$('#img_container').show('slow');
			sizea = $('#img_container img').width();
			$('#img_container img').load(function(){
			  if($(this).width() > 600) {
				$(this).width(600);
			  }
			});
			clicked = 1;
		}
	});

	//$('#img_container').html("<img src='' border='0' alt=''>");
	//$('#img_container').show('normal');
}



$(document).ready(function(){

	//if (clicked == 1) {
		$(document).click(function(){
			if (clicked == 1) {
				$("#img_container").hide("slow");

				clicked = 0;
			}
		 // $(this).toggleClass("active");
		});
	//}

});

//$(document).onDomReady() = function ()
