$(document).ready(function(){
	
	$("img").livequery("click",function(){
		b = "";	b = $(this).attr("b");
		if(b != undefined){
			_img(b);
		}
		id = "";ide = ""; id = $(this).attr("id"); ide = $(this).attr("ide");
		if(id != undefined && ide != undefined){
			_img2(id,ide);
		}
	});
	
	$("img").livequery(function(){
		$(this).hover(function(){
			$(this).attr("src",$(this).attr("h"));
		},function(){
			$(this).attr("src",$(this).attr("o"));
		})
	})
	
	$("._img img, .galclose").livequery("click",function(){$("._img").remove();});
	$(".galnext").livequery("click",function(){
		if(!$(this).hasClass("disabled")){
			ide = $(".omim img").attr("next");
			id = $(this).attr("id");
			_img3(id,ide);
		}
	});
	
	$(".galprev").livequery("click",function(){
		if(!$(this).hasClass("disabled")){
			ide = $(".omim img").attr("prev");
			id = $(this).attr("id");
			_img3(id,ide);
		}
	});
	
});

function _img(b){
	$("body").append("<div class='_img ab' style='z-index:999;'></div>");
	$("._img").load("plugins/gallery/ajax.php",{"f":"nav","file":b});
}
function _img2(id,ide){
	$("body").append("<div class='_img ab' style='z-index:999;'></div>");
	$("._img").load("plugins/gallery/ajax.php",{"f":"nav","id":id,"ide":ide});
}
function _img3(id,ide){
	$(".imageframe").load("plugins/gallery/ajax.php",{"f":"image","id":id,"ide":ide});
}
