window.addEvent('domready',function(){
	
	var caption = $("caption");
	var desc = $("description");
	var fullview = $("fullview");
	var imgLoader;
	
	function showImage(el){
		//
		var str;
		//
		var path = el.getAttribute("rel");
		//alert(">"+el.getAttribute("title"));
		var id = el.getAttribute("id").split("_").pop();
		var attrTitle = $('thumb_'+id).getAttribute("alt");
		
		//caption.setHTML("...");	
		caption.setHTML(el.getAttribute("title"));
		//alert(typeof $("thumb_"+id).getAttribute("alt"));
		str = $("thumb_"+id).getAttribute("alt");
		if(str.length>0){
			desc.setHTML($("thumb_"+id).getAttribute("alt"));
		}
		
		//alert(">"+el.getAttribute("title"));

		imgLoader = new Asset.image(path, {title:attrTitle, onload:function(){
			
			//desc.setHTML(">"+imgLoader.getAttribute("alt"));
			//alert(">"+imgLoader.getAttribute("alt"));
			caption.setStyle('width',imgLoader.width+'px');
			fullview.setAttribute("src",imgLoader.src);
		}});


	}
	$$('a.thumbLink').addEvent('click',function(e){
		showImage(this);
	});
	if($$('a.thumbLink').length>0){
		showImage($("thumbLink_0"));
	}	
});
