// JavaScript Document

//TOOL-TIPS		
window.addEvent('domready', function(){	
	/* Tips 2 */
	var Tips2 = new Tips($$('.tips'), {
		initialize:function(){
			this.fx = new Fx.Style(this.toolTip, 'opacity', {duration: 500, wait: false}).set(0);
		},
		onShow: function(toolTip) {
			this.fx.start(1);
		},
		onHide: function(toolTip) {
			this.fx.start(0);
		}
	});
	
});

// PICTURE SWITCH
function startGallery() {
var myGallery = new gallery($('myGallery'), {
timed: true
});
}
window.addEvent('domready', startGallery);

//SCROLLBAR
function scroll_bar()
{
	//alert((document.body.clientHeight-85)+"px "+(document.documentElement.clientHeight-85)+"px "+(window.innerHeight-85)+"px");
	document.getElementById("scroll_div").style.height = (document.documentElement.clientHeight-85)+"px";
	document.getElementById("scroll_div").style.width = (document.documentElement.clientWidth-215)+"px";
}

