jQuery(document).ready(function(){

	jQuery("p.hinweis").fadeIn(1000);
	jQuery("a.img").lightBox();

	// Sprach-Flaggen
	jQuery("#lang_navi span img").fadeTo("slow", 0.5);

	if (!($.browser.msie && $.browser.version == '6.0')) {
		jQuery.pir.options.php="pir.php";
		jQuery("h1").pir({ font: "pala.ttf", wrap: true });
		//jQuery("h2").pir({ font: "pala.ttf", wrap: true });
		jQuery("#sub_navi a").pir({ font: "pala.ttf", wrap: true });
	}

	// Key-Checker für Mengenfeld im Shop -> nur Zahleneingaben zugelassen
	var i = 0;
	function qty_keys(e) {
  		if( e.which!=8 && e.which!=0 && (e.which<48 || e.which>57)) {
    		return false;
 		}
	}
	jQuery(".menge input").keypress(qty_keys);

	// Flaschentausch Mehrfrucht-Glühwein
	jQuery("img#mf1, span#mfl1").click(function() {
		$("img#mf").attr("src", "img/content/mf_gluehwein_rechts_flasche1.jpg");
		$("img#mf1").attr("src", "img/content/mf_gluehwein_flasche1.jpg");
		$("img#mf2").attr("src", "img/content/flasche2_hidden.jpg");
		$("img#mf3").attr("src", "img/content/flasche3_hidden.jpg");
	});
	jQuery("img#mf2, span#mfl2").click(function() {
		$("img#mf").attr("src", "img/content/mf_gluehwein_rechts_flasche2.jpg");
		$("img#mf2").attr("src", "img/content/mf_gluehwein_flasche2.jpg");
		$("img#mf1").attr("src", "img/content/flasche1_hidden.jpg");
		$("img#mf3").attr("src", "img/content/flasche3_hidden.jpg");
	});
	jQuery("img#mf3, span#mfl3").click(function() {
		$("img#mf").attr("src", "img/content/mf_gluehwein_rechts_flasche3.jpg");
		$("img#mf3").attr("src", "img/content/mf_gluehwein_flasche3.jpg");
		$("img#mf1").attr("src", "img/content/flasche1_hidden.jpg");
		$("img#mf2").attr("src", "img/content/flasche2_hidden.jpg");
	});

	// Flaschentausch Heidelbeer-Glühwein
	jQuery("img#hb1, span#hbl1").click(function() {
		$("img#hb").attr("src", "img/content/hb_gluehwein_rechts_flasche1.jpg");
		$("img#hb1").attr("src", "img/content/hb_gluehwein_flasche1.jpg");
		$("img#hb2").attr("src", "img/content/hb_gluehwein_flasche2_hidden.jpg");
		$("img#hb3").attr("src", "img/content/hb_gluehwein_flasche3_hidden.jpg");
	});
	jQuery("img#hb2, span#hbl2").click(function() {
		$("img#hb").attr("src", "img/content/hb_gluehwein_rechts_flasche2.jpg");
		$("img#hb2").attr("src", "img/content/hb_gluehwein_flasche2.jpg");
		$("img#hb1").attr("src", "img/content/flasche1_hidden.jpg");
		$("img#hb3").attr("src", "img/content/flasche3_hidden.jpg");
	});
	jQuery("img#hb3, span#hbl3").click(function() {
		$("img#hb").attr("src", "img/content/hb_gluehwein_rechts_flasche3.jpg");
		$("img#hb3").attr("src", "img/content/hb_gluehwein_flasche3.jpg");
		$("img#hb1").attr("src", "img/content/flasche1_hidden.jpg");
		$("img#hb2").attr("src", "img/content/flasche2_hidden.jpg");
	});

	// Flaschentausch Apfel-Zimt-Glühwein
	jQuery("img#az1, span#azl1").click(function() {
		$("img#az").attr("src", "img/content/az_gluehwein_rechts_flasche1.jpg");
		$("img#az1").attr("src", "img/content/az_gluehwein_flasche1.jpg");
		$("img#az2").attr("src", "img/content/flasche2_hidden.jpg");
		$("img#az3").attr("src", "img/content/flasche3_hidden.jpg");
	});
	jQuery("img#az2, span#azl2").click(function() {
		$("img#az").attr("src", "img/content/az_gluehwein_rechts_flasche2.jpg");
		$("img#az2").attr("src", "img/content/az_gluehwein_flasche2.jpg");
		$("img#az1").attr("src", "img/content/flasche1_hidden.jpg");
		$("img#az3").attr("src", "img/content/flasche3_hidden.jpg");
	});
	jQuery("img#az3, span#azl3").click(function() {
		$("img#az").attr("src", "img/content/az_gluehwein_rechts_flasche3.jpg");
		$("img#az3").attr("src", "img/content/az_gluehwein_flasche3.jpg");
		$("img#az1").attr("src", "img/content/flasche1_hidden.jpg");
		$("img#az2").attr("src", "img/content/flasche2_hidden.jpg");
	});
});
