jq(document).ready(function() {

		//jq("div.stylehelper").corner("10px");

		jq("p.print").show();
		jq("p.print").click(function() {
		window.print();
		return false;
		});

		jq("a.agbticketing").click(function() {
		Popup = window.open(this.href,'AGBs','height=500,width=694,resizable=yes,scrollbars=yes');
		Popup.focus();
		return false;
		});

		jq("li#helpticketing a").click(function() {
		Popup = window.open(this.href,'Help','height=400,width=694,resizable=yes,scrollbars=yes');
		Popup.focus();
		return false;
		});

                jq("select[name='zahlart']").children().each(
                    function(){
                        if(jq(this).attr('value') == 3 || jq(this).attr('value') == 4 || jq(this).attr('value') == 5 || jq(this).attr('value') == 6|| jq(this).attr('value') == 7)
                            jq(this).remove();

                    }
                );
		
		
	// navigation-styling start buehnebaden - in general js vorhanden !
	
	/* jq("#nav").attr({
		style: "text-align: right"
		});

	var steigung = 194/839;

        jq("#nav a").each(function (i) {
		var position = jq(this).position();
		var textoffset = Math.round(position.top * steigung);
		jq(this).attr({
			style: "padding-right:" + textoffset + "px"
			});		
             });	
	
	// navigation-styling end */

		});

