$(document).ready(function($) {	
	$('.accordion dd').hide();
  $('.accordion dt a').click(function(){
		$('.accordion dd').slideUp();
		$(this).parent().next().slideDown();
		return false;
  }).filter(':first').click();
	if($('#flash').length && $('body#home').length) {
		$("#flash").flash({
		  swf: "/assets/media/home_header.swf",
		  width: "100%",
		  height: "100%",
		  params: {
		    wmode: "transparent"
		  }
		});
	} else if($('#flash').length && $('body#page').length) {
		$("#flash").flash({
		  swf: "/assets/media/page_header.swf",
		  width: "100%",
		  height: "100%",
		  params: {
		    wmode: "transparent"
		  }
		});
	}
  $('.height').vTicker({ 
		speed: 500,
		pause: 3000,
		animation: 'scrollDown',
		mousePause: true,
		showItems: 8
	});
	Cufon.replace('h1', { 
		textShadow: '#fff 3px 3px',
		fontSize: '70px'
	});
	Cufon.replace('#intro h3, #intro p', {
		fontSize: '14px'
	});
});
