// JavaScript Document

$(document).ready(function() {
						   
    $('#c10442 .news-list-container').cycle({
		fx: 'fade',
		speed:  1000,
		timeout:7500,
		pause:   1 
	});
	
    $('#c10443 a').cycle({
		fx: 'fade',
		speed:  1000,
		timeout:5000
		
	});	
	
	
	    //Togglebox
 
    jQuery(".toggler").click(function() {
        //  Options: slideToggle, fadeToggle - numeric value is animation time in ms                                     
        $(this).closest(".wrap").children(".element").slideToggle(400, function() {
        $(this).closest(".wrap").children(".toggler").toggleClass('act');
        });
    });
	
	
	
}); //end doc.ready.func



