jQuery.noConflict();
jQuery(document).ready(function($) {

	$('a.fancybox_img').fancybox({
		'transitionIn': 'fade',
		'transitionOut': 'fade',
		'speedIn': 600, 
		'speedOut': 200
	});


	$('.cycle').cycle({
		fx: 'fade' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
	});

    $('#brands').change(function(){
		location.href=$(this).attr('value');
    });



});

