$(document).ready(function(){


//STARTSEITE: Für den Imageslider von Sabri

		$(".mod_imageslider").hover(function(){
			$(this).find(".banderole").animate({"opacity":"1"},400);
			$(this).find(".controls").animate({"opacity":"1"},400);
			
		},function(){
			$(this).find(".controls").animate({"opacity":"0"},700);
			$(this).find(".banderole").animate({"opacity":"0"},700);
		});			
		

//STARTSEITE: 3er BigBlock Menü
		$(".BigBlockMenu").hover(function(){
			$(this).find("img").animate({"opacity":"0.7"},300);
			$(this).find("h2").animate({"opacity":"0.9","font-weight":"bold"},100);
				
		},function(){
			$(this).find("img").animate({"opacity":"1"},400);
			$(this).find("h2").animate({"opacity":"0.7","font-weight":"normal"},200);
		});		


//STARTSEITE: Für "Was bisher geschah..."

		$(".eventTeaser").hover(function(){
			$(this).find("img").animate({"opacity":"1"},300);
			
		},function(){
			$(this).find("img").animate({"opacity":"0.6"},400);
		});				
	

	
//STARTSEITE: Video Previews
		$(".videobox").hover(function() {
			$(this).find(".playbutton").stop().animate({"opacity": "1"},  "fast");
		},function() {
			$(this).find(".playbutton").stop().animate({"opacity": "0.8"},  "medium");
		});

		
		
//ALLE EVENTS: Für die Eventübersicht

		$(".event").hover(function(){
			$(this).find(".captionevent h2").animate({"opacity":"1"},300);
			$(this).find(".teaser img").animate({"opacity":"0.65"},300);
			
		},function(){
			$(this).find(".teaser img").animate({"opacity":"1"},1000);
			$(this).find(".captionevent h2").animate({"opacity":"0"},1000);
		});				


		
//EVENT DETAILS

/**
** Einstellungen für den Slider bitte der Modul JS entnehmen....
**/
	
	//Alle abblenden auf opacity 0.5 bzw. aufblenden auf 1	
		
	//YouTube Videos blenden
	$(".event .youtube").hover(function(){
			$(this).animate({"opacity":"1"},200);
				
		},function(){
			$(this).animate({"opacity":"1"},300);
		});			
		
	//Facebook Like blenden	
	$(".event .fb_edge_widget_with_comment").hover(function(){
			$(this).animate({"opacity":"1"},200);
				
		},function(){
			$(this).animate({"opacity":"0.5"},300);
		});	
	
	//Flyer Bild blenden
	$(".event .image_container img").hover(function(){
			$(this).animate({"opacity":"1"},200);
				
		},function(){
			$(this).animate({"opacity":"0.5"},300);
		});							

	//Facebook Comments blenden 	
	$(".event .fb_edge_widget_with_comment").hover(function(){
			$(this).animate({"opacity":"1"},200);
				
		},function(){
			$(this).animate({"opacity":"0.5"},300);
		});		


//BOOKING
//Fading Effect für Teaser IMGs
	$(".BigBlockMenuDJ").hover(function() {
	$(this).find(".imgA").stop().animate({"opacity": "1"},  "fast");
	$(this).find(".djtitle").stop().animate({"opacity": "1"},  "medium");
	},function() {
	$(this).find(".imgA").stop().animate({"opacity": "0.8"},  "medium");
	$(this).find(".djtitle").stop().animate({"opacity": "0"},  "slow");

	});

//Fading Effect für Bewerbung und Buchung	
	$(".bigFormLinkOne").hover(function() {
	$(this).stop().animate({"opacity": "1"},  "fast");
	},function() {
	$(this).stop().animate({"opacity": "0.8"},  "medium");
	});
	
	$(".bigFormLinkTwo").hover(function() {
	$(this).stop().animate({"opacity": "1"},  "fast");
	},function() {
	$(this).stop().animate({"opacity": "0.8"},  "medium");
	});
	

			
});
		
		


