$(function(){	
	$.easy.navigation();
	$.easy.tooltip();
	$.easy.popup();
	$.easy.external();
	$.easy.rotate();
	$.easy.cycle({ pause: 8000 });
	$.easy.forms();
	$.easy.showhide('.subnav>li a');
	$.easy.jump();
	$.easy.tabs();
	$.easy.accordion();
	
	$('#intro').each(function(){
		var href = $('a', this).attr('href');
		var h = 256; var w = 526;
		var flash = '<object width="'+ w +'" height="'+ h +'"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="'+ href +'" /><embed src="'+ href +'" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="'+ w +'" height="'+ h +'"></embed></object>';
		$('a', this).click(function(e){
			e.preventDefault();
			$(this).html(flash);
		});
	
	});
	
});
