function gallery() {
	var temp = document.getElementById("box");
	if(temp)
	{
		var hs4 = new noobSlide({
			box: $('box'),
			items: $ES('div.slide-area','box'),
			size: 573,
			startItem: 0,
			handles: $ES('li a','handles'),
			onWalk: function(item,handle){
				this.handles.removeClass('active');
				handle.addClass('active');
			}
		});
	}
}
if (window.addEventListener)
{
	window.addEventListener("load", gallery, false);
}
else if (window.attachEvent)
{
	window.attachEvent("onload", gallery);
}