var sIFRConfig = {
	init:function(opts){
		while(this.profiles.length) {
			var profile = this.profiles.pop()
			sIFR.activate(this.fonts[profile.font]);
			sIFR.replace(this.fonts[profile.font], profile.params);
		}
	},
	fonts:{
		clarendon:{
			src: '/release/includes/swf/clarendon-bdcn-bt-v2.swf'
		},
		bodoni:{
			src: '/release/includes/swf/bodoni-bt-roman.swf'
		}
	},
	profiles:[{
			font: 'clarendon',
			params:{
				wmode: 'transparent',
				selector: 'h1.irf',
			    css: {
			    	'.sIFR-root': {'font-size':'40px','color': '#362536', 'leading':-13, 'kerning':'true'}
			    }
		    }
		},{
			font: 'clarendon',
			params:{
				wmode: 'transparent',
				selector: 'div.call-to-action p strong',
			    css: {
			    	'.sIFR-root': {'font-size':'18px','color': '#362536', 'kerning':'true'},
			    	'a': {'color': '#362536'},
			    	'a:hover': {'color': '#362536'}
			    }
		    }
		},{
			font: 'clarendon',
			params:{
				wmode: 'transparent',
				selector: 'ul#venue-map.text li',
			    css: {
			    	'.sIFR-root': {'font-size':'16px','color': '#443046', 'cursor':'pointer', 'kerning':'true', 'leading':-5},
			    	'a': {'color': '#443046','text-decoration':'none'},
			    	'a:hover': {'color': '#443046'}
			    }
		    }
		}]
};

sIFRConfig.init();