function showProducts (selection, category, page, brand, shop, color, minimumPrice, maximumPrice, term, order){
	$('#tdContent').html('<div style="text-align: center; padding: 100px;"><img src="/images/loading.gif"></div>');
	category = typeof(category) != 'undefined' ? category : 0;
	page = typeof(page) != 'undefined' ? page : 1;
	brand = typeof(brand) != 'undefined' ? brand : 0;
	color = typeof(color) != 'undefined' ? color : 'Alles';
	minimumPrice = typeof(minimumPrice) != 'undefined' ? minimumPrice : 0;
	maximumPrice = typeof(maximumPrice) != 'undefined' ? maximumPrice : 1500;
	term = typeof(term) != 'undefined' ? term : '';
	order = typeof(order) != 'undefined' ? order : '';
	parameters = 'category=' + category + '&selection=' + selection + '&page=' + page + '&color=' + color + '&shop=' + shop + '&brand=' + brand + '&minimumPrice=' + minimumPrice + '&maximumPrice=' + maximumPrice + '&term=' + term + '&order=' + order;
	$('#tdContent').load('/ajax/products.php?' + parameters);
	document.location.hash = parameters;
	$('html, body').animate({scrollTop:0}, 'slow');
}
