/**
* Author: Rene Maas
* Date: 2010-03-31
* Version: 1.1
**/

jQuery(document).ready(function() {

	var trigger = '.accBtn'; //start-button
	
	var content = '.accCtn'; //content
	
	var speed = 1000; //sliding-time in ms
		
	jQuery(trigger).click(function() {
		jQuery(content).slideUp(speed);
		if(jQuery(this).next().css('display') != 'block')
		{
			jQuery(this).next().slideDown(speed);
		}
	});
	jQuery(content).hide(); // hide the content
});
