$(document).ready(function() {
		$('.FeaturedBrands .brand').cycle({
			fx: 'fade', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
			random: 1,
			next: '#next',
			prev: '#prev'			
		});

     $("#BrandURL").change(function () {
          window.location.href = this.options[this.selectedIndex].value;
        });
	});
