// default javascript file

	$(document).ready(function(){

	
		//marginalspalte accordion
		$('.accordion> *').not("h2").hide();
		$('.fieldset> *').not("h2").hide();
		$('.accordion> h2').click(function() {

			$(".accordion h2").not($(this)).toggleClass("exp");
			$(this).toggleClass("exp");
			
			
			//erst mal werden alle Nachbarn davor des angeklickten h2s zugeklappt
			$(this).prevAll().not("h2").slideUp('fast');
			
			//Jetzt identifizieren wir alle nchsten nachbarn...
			var mysiblings = $(this).nextAll();
			var i = 0;
			while(i < mysiblings.length) {
			//bis zum ersten folgenden h2 und klappen diese in die umgekehrte Richtung	
				if (mysiblings[i].tagName == "H2") {
					$(mysiblings[i]).nextAll().not("h2").slideUp('fast');
					break;
					}
				//und klappten Sie aus
				$(mysiblings[i]).slideToggle('fast');
				i++
				}
			
			})		
		
		// wird uebertypo ein bestimmtes Frame zugewiesen,
		// wird bildern automatisch die imagebox-Kennung hinzugefuegt
		// bei der single darstellung der news auch
		$(".news-single-img a").attr("rel","imagebox-header");
		$(".news-single-img a").addClass("thickbox");
		//$(".csc-frame-indent a").attr("rel","imagebox-content");
		$(".csc-frame-indent a").addClass("thickbox");
		$(".csc-frame-indent a").removeAttr("target");
		/* $("#product a.gallery").attr("rel","imagebox-content");
		$("#product a.gallery").addClass("thickbox"); */		
		/*$("#contentarea a.popup").attr("rel","imagebox-content");*/
		$("#contentarea a.popup").addClass("thickbox");
		
		//application form
		$('#div_kind-of-membership').hide();
		$('#div_kind-of-membership2').hide();
		$('#div_kind-of-membership3').hide();

		$('#fieldset_submit').hover( function () { $('#fieldset_submit p.last').effect('pulsate', { times: 3 }, 300); });

	});

