
$(function() {

	if($.fn.Carousel) {
		$('.products-carousel').Carousel(
				{
					itemWidth: 64,
					itemHeight: 64,
					itemMinWidth: 64,
					items: 'div',
					reflections: .5,
					rotationSpeed: 2.4
				}
			);
	}

	$('.product-filter-type .form-buttons').remove();	
	
	$('.product-filter-type .form-field-id-t select').change(function() {
		document.forms[this.form.name].submit();
	});

	$('.product-filter-type .form-field-id-p select').change(function() {
		document.forms[this.form.name].submit();
	});


});
