// JavaScript Document
document.write('<script type="text/javascript" src="/js/swfobject.js"><\/script>');
/*
var numberOfPromos = 5;

function viewPromo(promo){
	hideAllPromos();
	resetAllNavItems();
	resetAllAnimationElements();
	$('homePromoFeature'+promo).addClassName('homePromoFeature_show');
	$('promo' + promo + '_nav').addClassName('selected');
	buildPromo(promo);
}

function hideAllPromos(){
	var i=1;
	while (i<=numberOfPromos){
	$('homePromoFeature'+i).removeClassName('homePromoFeature_show');
	i++;
	}
}

function resetAllNavItems(){
	var i=1;
	while (i<=numberOfPromos){
	$('promo' + i + '_nav').removeClassName('selected');
	i++;
	}
}
function resetAllAnimationElements(){
	$('promo1_danielle').hide();
	$('promo1_copyCircle').hide();
	$('promo2_copyBox').hide();
	var i=1;
	while (i<=numberOfPromos){
		$('promo' + i + '_copy').hide();
	i++;
	}
}

function buildPromo(promoID){
	switch (promoID){
		case 1:
			$('promo1_danielle').appear( { duration: 1.0 } );
			setTimeout(function(){Effect.BlindDown('promo1_copyCircle', {duration:2.0} )},1500);
			//setTimeout(function(){$('promo1_copyCircle').appear( { duration: 1.0 } ) },1500);
			setTimeout(function(){$('promo1_copy').appear( { duration: 1.0 } ) },4000);
		break;
		case 2:
			//$('promo2_copyBox').appear( { duration: 1.0 } );
			setTimeout(function(){Effect.BlindDown('promo2_copyBox', {duration:2.0} )},1000);
			setTimeout(function(){$('promo2_copy').appear( { duration: 2.0 } ) },3500);
		break;
		case 3:
			//$('promo3_copy').appear( { duration: 1.0 } );
			//setTimeout(function(){$('promo3_copy').appear( { duration: 2.0 } ) },1000);
			setTimeout(function(){Effect.BlindDown('promo3_copy', {duration:2.0} )},1000);
		break;
		case 4:
//			setTimeout(function(){$('promo4_copy').appear { duration: 2.0 } ) },2000);
			setTimeout(function(){Effect.BlindDown('promo4_copy', {duration:2.0} )},2000);
		break;
		case 5:
			//$('promo5_copy').appear( { duration: 1.0 } );
			setTimeout(function(){Effect.BlindDown('promo5_copy', {duration:2.0} )},2000);
		break;
	}
	$('promo'+promoID+'_nav').addClassName('selected');
}

Event.observe(window, "load", function() {
		resetAllAnimationElements();									   	
		viewPromo(1);
});
*/