Cufon.replace('h2', { fontFamily: 'Helvetica Neue' });
Cufon.replace('h3', { fontFamily: 'Helvetica Neue' });
Cufon.replace('h4', { fontFamily: 'Helvetica Neue' });
Cufon.replace('#tagline', { fontFamily: 'Swis721 LtEx BT' });
Cufon.replace('#more', { fontFamily: 'Swis721 Ex BT' });
Cufon.replace('#tagline strong', { fontFamily: 'Swis721 Ex BT' });
 
window.addEvent ('domready', function() {

if ($('content1')){ $('content1').setStyle('opacity','0'); }
});

window.addEvent ('load', function() {


	if (!Browser.Engine.trident) {
	
		if ($('content1')){ 
			var content1 = $('content1'); 	
			content1.setStyle('opacity','0');
		
			h2 = content1.getElement('h2');
			h3 = content1.getElement('h3');
			h2.setStyle('opacity','0');
			h2.setStyle('margin-left','150px');
			h3.setStyle('opacity','0');
			h3.setStyle('margin-left','-150px');
			
			if($('tagline')) { 
				$('tagline').setStyle('opacity',0); 
				fxTag = new Fx.Morph($('tagline'),{duration:700, wait:false});
				fxTag.start.delay(2800, fxTag, {'opacity':'1'});
			}
			if($('more')) { 
				$('more').setStyle('opacity',0); 
				fxMore = new Fx.Morph($('more'),{duration:700, wait:false});
				fxMore.start.delay(4000, fxMore, {'opacity':'1'});
			}
		
		
			fxh2 = new Fx.Morph(h2,{duration:2000, transition:Fx.Transitions.Cubic.easeOut, wait:false});
			fxh3 = new Fx.Morph(h3,{duration:2000, transition:Fx.Transitions.Cubic.easeOut, wait:false});
			fxh2.start.delay(900, fxh2, {
										'opacity':'1',
										'margin-left':'0'
										});
		
			fxh3.start.delay(900, fxh3, {
										'opacity':'1',
										'margin-left':'0'
										});
		
		}
	
	}
	
	fx1 = new Fx.Morph('content1',{duration:1000, wait:false});
	fx1.start.delay(200, fx1, {'opacity':'1'});

});
