// JavaScript Document

var ContactPage = {
	
	setMailto:function(mailto){
		switch(mailto){
			case 'frank':
				var subject = $('subject');
				subject.style.backgroundImage = "url('/files/img/layout/contactpage/co_frank.jpg')";
				subject.style.backgroundRepeat = "no-repeat";
				subject.style.width = 450 + "px";
				subject.style.paddingLeft = 200 + "px";
				$('arrow_frank').style.display = 'block';
				$('arrow_serein').style.display = 'none';
				$('clearDirectContact').style.display = 'block';
				Event.observe($('clearDirectContact'), 'click', this.clearDirectContact);
				$('mailto_subject').value = "frank";
				break;
			case 'serein':
				var subject = $('subject');
				subject.style.backgroundImage = "url('/files/img/layout/contactpage/co_serein.jpg')";
				subject.style.backgroundRepeat = "no-repeat";
				subject.style.width = 447 + "px";
				subject.style.paddingLeft = 203 + "px";
				$('arrow_serein').style.display = 'block';
				$('arrow_frank').style.display = 'none';
				$('clearDirectContact').style.display = 'block';
				Event.observe($('clearDirectContact'), 'click', this.clearDirectContact);
				$('mailto_subject').value = "serein";
				break;
		};
	},
	
	clearDirectContact:function(){
		$('arrow_serein').style.display = 'none';
		$('arrow_frank').style.display = 'none';
		
		$('clearDirectContact').style.display = 'none';
		var subject = $('subject');
		subject.style.backgroundImage = "";
		subject.style.width = 650 + "px";
		subject.style.paddingLeft = 0 + "px";
		//$('mailto_subject').value = "";
	}
}