/**
 * jquery.filter_properties
 *
 * Bietet eine Filterung ueber diverse Selectboxen im Listing
 *
 * @author: S.Pohl <info@shopware.de>
 * @date: 05-11-11 
 */
(function($) {
$(document).ready(function() {
	$('.select_filter select').change(function(e) {
		var $this = $(this),
			val   = $this.find(':selected').val();
		
		window.location.href = '/' + val;
	});
})
})(jQuery);
