Event.observe(window,'load',homeInit);
//=================================== START: INIT FUNCTIONS =========================================//
	
	function homeInit(){
		setSubscribeListener();
		setBlankLink();
	};	
	
	function setSubscribeListener(){
		Event.observe('subscribeLink','click',setSubscribe,true);			
	};	
	
	function setBlankLink(){
		$('subscribeLink').writeAttribute('target', '_blank');	
	};	
	

	function setSubscribe(e){
		Event.stop(e);
		window.open( 'http://oi.vresp.com/?fid=7cea4f11c2', 'vr_optin_popup', 'scrollbars=yes,width=600,height=450' ); return true;
	};	
