$(document).ready(function()
{
	// Maximal 5 Artikel miteinander vergleichen
	$('#productlist input[name="compare"]').bind('click', function(e){
		if($('#productlist input[name="compare"]:checked').length > 5) {
			alert(txt_compare2);
			$(this).attr('checked', false);
		}
	});
});