$(document).ready(function() {	
	$('#brandSlideshow').cycle({
	// <![CDATA[ 
		fx:      'scrollHorz', 
		speed:    500, 
		timeout:  3500,
		random:  1,
		pause: 1 
	});	
	
	$('#brandsQueryHolder').hide();
	
	$('a.filterResults_open').click(function() {
		$('#brandsQueryHolder').slideDown(350, function() {
			$('a.filterResults_open').fadeOut('fast');											  
		});	
		return false
	});
	
	$('a.filterResults_close').click(function() {
		$(this).hide();									  
		$('#brandsQueryHolder').slideUp(350, function() {
			$('a.filterResults_open').fadeIn();
			$('a.filterResults_close').show();
		});		
		return false
	});
	
});