window.addEvent('domready', function(){ 
	new SmoothScroll(); 
	
	$$('div.gremiumitem').each(function(div) {
		var persLink = div.getElement('a');
		div.addEvent('click', function() {
			window.location.href = persLink.href;
		});
		div.addEvent('mouseenter', function() {
			div.addClass('gremiumact');
		});
		div.addEvent('mouseleave', function() {
			div.removeClass('gremiumact');
		});
	});
	
	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);
		}
	});
	
});



function showIframe() {
	document.getElementById("iframe").style.display="block";
}