$(document).ready(function() {
	if ($.browser.msie && parseInt($.browser.version) < 7) {
	} else {
		Custom.init();
	}
	$('#manufacturers-list').change(function() {
		href = $(this.options[this.selectedIndex]).val();
		if (href.length > 0) window.location.href = '/products/manufacturer.php/'+href+'/';
	});
});

