/* ---------------------------------------- *
* abandon hope, all ye who enter here ----- *
*  __           _   _             
* / _|         | | (_)            
*| |_ __ _  ___| |_ _  ___  _ __  
*|  _/ _` |/ __| __| |/ _ \| '_ \ 
*| || (_| | (__| |_| | (_) | | | |
*|_| \__,_|\___|\__|_|\___/|_| |_|
*
* author: gregory nicholas            ----- *
* uri: www.factioninc.com             ----- *
*                                     ----- *
* ----------------------------------------- */
app = {
	emailHost : 'iheartvanilla.com',
	init : function ( e )
	{
		var emailLink = 'sales@' + app.emailHost;
		$ ( 'contactLink' ).update ( '<a href="mailto:' + emailLink + '">' + emailLink + '</a>' )
	}
};

/*
 *** SIFR - FLASH FONT REPLACEMENTS
*/
var sIFRFont = { src : '/faction/app_themes/ihv/sifr.swf' };
sIFR.activate ( sIFRFont );
sIFR.replace ( sIFRFont, {
	wmode : 'transparent', 
	selector : 'h2',
	//'selectable' : 'false',
	selectable : false,
	css : '.sIFR-root { font-size : 20px; color : #1F1510; selectable : false; }'
}); 

Event.observe ( window, 'load', app.init, false );