window.addEvent("domready",function(){	
	//----------------Start Effect Tool Tip---------------------
	var itempics = $$("div.itemgallery img.picbag");
	var bagtips = new Tips(itempics,{
					offsets : {x:5,y:-105},
					showDelay : 300,
					hideDelay : 0
				});
	//----------------End Effect Tool Tip-----------------------
	
	//---------------Start show popup--------------------------
	var imgpopups = $$("div.itempic a");
	imgpopups.each(function(imgpopup,i){
		var picattr = imgpopup.getProperties('href','name','title');
		imgpopup.addEvent('click',function(e){
			new Event(e).stop();
			var imgcontainer = new popupPic(picattr.href,picattr.name,picattr.title);
			imgcontainer.addContainer($('container-outer'));
		});
	});
	//---------------End show Popup----------------------------
});
