window.addEvent('domready', function(){
	//external links
	$$('a[rel=external]').set('target', '_blank');
	
	//Text Replace
	var txtResize = new textResizeDetector();
	new flashText('.brand p.heading', {font: '/_common/swf/titles.swf', size: 29, resizer: txtResize});
	new flashText('.intro h1', {font: '/_common/swf/titles.swf', size: 24, resizer: txtResize});
	new flashText('.cont4 h1', {font: '/_common/swf/titles.swf', size: 24, resizer: txtResize});
	
	//inject the print function for javascript users
	//first find email link and if it exists inject the print function next to it
	var email = $$('.email')[0];
	if(email){
		new Element('li', {
			'html': '<a href="#">Print this page</a>',
			'class': 'print',
			'events': {
				'click': function(e){
					new Event(e).stop();
					window.print();
				}
			}
		}).inject(email, 'before');
	}
	
	//Site Hide (show)
	$(document.body).setStyle('visibility', 'visible');
	
});
