
function init(){
	
	setTimeout("fader('Contact-Page-Overlay',0.55,100,0,1)",150);
	setTimeout("random_jump('Contact-Page-Overlay')",7500);

	setTimeout('fade_back("contact",1)',800);

	if($.id('form-message'))
		setTimeout('fade_back("form-message",1)',1600);

	fade_menu('front-page-menu');

	if($.id('contact-form'))
		{
		var tags=$.id('contact-form').getElementsByTagName('INPUT');
		tags[tags.length]=$.id('contact-form').getElementsByTagName('TEXTAREA')[0];
		}
	else
		var tags=$.id('mailing-list').getElementsByTagName('INPUT');

	var change_style=function()
			{
			if(typeof this.on=='undefined' || this.on==false)
				{
				this.old_bbc=this.style.borderBottomColor;
				
				this.style.backgroundColor='#F1F1DA';
				this.style.borderColor='#ffffff';
				this.style.borderBottomColor='#dbda89';

				this.on=true;
				}
			else
				{
				this.style.backgroundColor='#dbda89';
				this.style.borderColor='#dbda89';
				this.style.borderBottomColor=this.old_bbc;

				this.on=false;
				}
			}

	for(var i=0;i<=tags.length;i++)
		if(tags[i])
			{
			EventUtils.addEventListener(tags[i],'focus',change_style);
			EventUtils.addEventListener(tags[i],'blur',change_style);
			}
}