$(document).ready(function(){
  				var link = $(".thumb").children().attr("src");
  				$("#cont").attr("src", link);
  				$(".thumb:first").removeClass("noactive");
   			$(".thumb:first").addClass("active");
   			var ulid1 = $("#delimg").attr("href");
   			var ulid2 = $(".thumb:first").children().attr("lid");
   			var xurl = ulid1+ulid2;
   			$("#delimg").attr("href", xurl);
   			//var infoi = $(".thumb:first").children().attr("info");
   			//$(".imageInfos").html(infoi);
				$(".thumb").click(function (e) {
  				$(".thumb").removeClass("active");
  				$(".thumb").addClass("noactive");
  				$(this).removeClass("noactive");
  				$(this).addClass("active");
  				var ulid = ulid1;
  				var url = $(this).children().attr("src");
  				var lid = $(this).children().attr("lid");
  				var cururl = ulid + lid;
  				$("#delimg").attr("href", cururl);
  				//var infoi2 = $(this).children().attr("info");
  				//$(".imageInfos").html(infoi2);
  				$("#cont").attr("src", url);
  				return false;
			});
});