/*	jquery Anweisungen */
jQuery.noConflict();
	jQuery(document).ready(function() {
		/*	Auswahlrahmen beim FOCUS-Event entfernen */
		 	jQuery("a").focus(function() { this.blur(); });
			
		/*	flashbox startseite */
			currentFlashbox = "fbb1";
			jQuery("#fbcfbb1").hide();
			jQuery("#fbcfbb2").hide();
			jQuery("#fbcfbb3").hide();
			jQuery("#fbcfbb1").fadeIn("fast");
		
			jQuery(".fbb").click(function () {
				if (this.id != currentFlashbox) {
					this.blur();
					jQuery(".fbb").removeClass("active");
					jQuery(this).addClass("active");
					jQuery("#fbc" + currentFlashbox).fadeOut("400");
					jQuery("#fbc" + this.id).fadeIn("400");
					currentFlashbox = this.id;
				}
			});
			
			function flashboxNext() {
				var newId = "fbb1";
				if (currentFlashbox == "fbb1")
					newId = "fbb2";
				if (currentFlashbox == "fbb2")
					newId = "fbb3";
				if (currentFlashbox == "fbb3")
					newId = "fbb1";
				jQuery("#"+newId).click();
			}
			
			if (jQuery("#fbcfbb1").length > 0) {
				var flashboxInterval = setInterval(flashboxNext, 10000)
			}
			
			
	});
