jQuery.noConflict();

jQuery(document).ready(function() 
{
	jQuery('#flash-header').cycle({ 
		fx:     'scrollRight',
		sync:	1,
		startingSlide:	Math.floor(Math.random()*21),
		easing: 'easeinout', 
		next:   '#flash-header', 
    	pause:   0,
		speed:	500,
		timeout: 3000
	});

	var menus = new Array("indoor", "outdoor", "evening", "teamwork");
	for (j=0; j < menus.length; j++){
		jQuery("#brands li:eq("+j+") a").addClass(menus[j]);
	}

	jQuery("#rhs > dl > dt").toggle(
		function () {
			jQuery(this).next().slideUp();
		},
		function () {
			jQuery(this).next().slideDown();
		}
	);
	
});

