$(document).ready(function() {
	$('div#footer a.print').click(function() {
		window.print();
		return false;
	});
	$('#col3_content select#select_angebote').change( function() {
		var value = $("#col3_content select#select_angebote").val();
		if(value != 0)
		{
			if(value == 4)
			{
				window.location.assign("/deluxe");
			}
			else
			{
				window.location.assign("/angebote/kategorie/"+value);
			}
		}
		return false;
	});
});