jQuery(document).ready(function(){
	
	jQuery('#menu').accordion({
		active: false,
		header: '.menuTitle',
		animation:{height:"show"},
		event: 'click',
		autoheight:false,
		navigation:true,
		showSpeed: 1200,
		hideSpeed: 1400
	});

/* remove box from links */
	jQuery("a").focus(function(){
		this.blur();
	});

});




function runJS() {
	var angelina = {  src: DNN_skinPath + 'angelina.swf' };
	sIFR.activate(angelina);
	sIFR.replace(angelina, {
  		selector: 'h1', 
  		wmode: 'transparent', 
  		src:  DNN_skinPath +  'angelina.swf', 
  		css: [ '.sIFR-root {color:#ffffff; font-size:40px;}'  ]
});
}

jQuery(document).ready(function(){
	jQuery('.accordion h2').click(function() {
	jQuery(this).toggleClass('active').next().slideToggle('slow');
		return false;
	}).next().hide();

	

});



jQuery(document).ready(function($){

	// this part goes in site.js inside the DOCUMENT READY - DO NOT PUT IT IN TWICE
	$('.accordion-faq h3').click(function() {
		$(this).toggleClass('active').next().toggle('normal');
		return false;
	});
	
});
