// START jQUERY
$(document).ready(function(){        
	
	/* TOGGLE NEXT SIBLING ELEMENT */
	$("a.toggle-next").click(function(){
		$(this).next("div").slideToggle(500);
		return false;
	})    	
	
	/* BANNER FADE (http://malsup.com/jquery/cycle/options.html) */ 
	var banner_timeout = 0;
	if ($("#home-banner").length>0){
		 banner_timeout = 7000;
	}    
	$('.banner ul').cycle({ 
		fx:     'fade', 
		timeout:  banner_timeout, //8500
		speedIn:  1500, 
		speedOut: 1500, 
		easeIn:  'easeInExpo', 
		easeOut: 'easeOutExpo',
		pager: '.banner-pager',  
		after: function(){  
			 //$('#banner').bgscroll({scrollSpeed:360, direction:'h'});
		}               
	});     
	
 });    

    
