
$(document).ready(function() { 
	$('#image_rotate').innerfade({ 
		speed: 3000, 
		timeout: 6000, 
		type: 'sequence', 
		containerheight: ''
	});
});

$(document).ready(function() {
 
	$('div.accordionButton').click(function() {
		$this = $(this);
		if($this.hasClass('open')){
			$this.next().slideUp(300);
			$this.removeClass('open');
		}else{
			$('div.accordionButton.open').removeClass('open').next().slideUp(300);
			$this.next().slideDown(300);
			$this.addClass('open');
		}
	});

	$("div.accordionContent").hide();
 
});

