/**
 * @author daniel alfes
 */

jQuery(document).ready(function(){
	if(jQuery('.CCHACCORD_820').length){
	
		jQuery.getScript(basepath + '/common/script/accordion.js',function(){
	
	        jQuery('.CCHACCORD_820').each(function(){
				
				// applying the settings
	            jQuery(this).find('ul.accHaupt').Accordion({
	                active: 'h3.selected',
	                header: 'h3.head',
	                alwaysOpen: false,
	                animated: true,
	                showSpeed: 400,
	                hideSpeed: 400
	            });
	            jQuery(this).find('ul.accSub').Accordion({
	                active: 'h4.selected',
	                header: 'h4.head',
	                alwaysOpen: false,
	                animated: true,
	                showSpeed: 400,
	                hideSpeed: 400
	            });					
			});
		});
	}	
});


