
if (window.ActiveXObject) window.ie = window[window.XMLHttpRequest ? 'ie7' : 'ie6'] = true;

function displayIntro(){
	
	if (window.ie6){
	Event.observe($('intro'),'click',function(){ Element.hide($('intro')); }, false);
	} else {
	Element.hide($('intro'));
	new Effect.Appear($('intro'), {delay:0.8, duration:0.6, fps:200});
	Event.observe($('intro'),'click',function(){ Effect.Fade($('intro')); }, false);
	}
	
}


var init = new domFunction(function() {
	displayIntro();
}, { 'intro' : 'id'} );


