function loadImg(){
	var src = $(this).attr("href");	
	$(this).parent().find("img").removeClass("img-current");
	$(this).find("img").addClass("img-current");
	$("#img-zoom img").fadeOut(function(){$(this).attr("src", src).fadeIn();});
	return false;
}
