jQuery(function ($) {
				 
	$(document).ready(function() {
		
		$('#bg_img img').each(function () {
			var img_src = $(this).attr('src');
           	var timestamp = new Date().getTime();
           	$(this).attr('src',img_src+'?'+timestamp);
			$(this).load( function() {$(this).fadeTo(500, 1);});
		});
		
		$('#option_1, .option_1').click(
				function(){
					var breite = $('#option_1_text').width();
					if (breite == 0) {
						$('#option_2_text, #option_3_text, #option_4_text').stop().animate({'width':'0px'});
						$('#option_1_text').stop().animate({'width':'670px'});
					} else {
						$('#option_1_text').stop().animate({'width':'0px'});
					}
					$('.schliessen_opt_1').click(function(){
							$('#option_1_text').stop().animate({'width':'0px'});
					});		
		});
		$('#option_2, .option_2').click(
				function(){
					var breite = $('#option_2_text').width();
					if (breite == 0) {
						$('#option_1_text, #option_3_text, #option_4_text').stop().animate({'width':'0px'});
						$('#option_2_text').stop().animate({'width':'670px'});
					} else {
						$('#option_2_text').stop().animate({'width':'0px'});
					}
					$('.schliessen_opt_2').click(function(){
							$('#option_2_text').stop().animate({'width':'0px'});
					});		
		});
		
		var geclickt = 0;
		if($.browser.webkit){var form_width = $('.overlay_link').width()-5;
		} else {var form_width = $('.overlay_link').width()/*+12*/;}
		
		$('#wpcf7-f3562-t1-o1 input:not(.wpcf7-submit)').css('width',form_width-10);
		if ($('#wpcf7-f3562-t1-o1 div.wpcf7-validation-errors').length > 0) {
				$('#magenta_feld').css({'opacity':'0.9'});
				$('.overlay_link').css({'color':'#fff', 'background-color':'#000'});
				$('#dialog_formular, .overlay_link, #magenta_feld').css({'display':'block'});
		}

		$('#form_schliesen, #magenta_feld').click(function(){
						$('.overlay_link, #dialog_formular, #magenta_feld, #grau_feld').css('display','none');
						geclickt=0;
		});
		
		$('.link_formular_markenfuehrung, .link_formular_wertschoepfung, .link_formular_inhaber, .link_formular_profil').mouseenter(function(){
			
				var offset_link = $(this).offset();
				$('#magenta_feld').css('display','block');
				$('#grau_feld').css('display','block');
				$('#magenta_feld').stop().animate({'opacity':'0.8'}, 200);
				$('#grau_feld').stop().animate({'opacity':'1.0'}, 200);
		});
		$('.link_formular_markenfuehrung, .link_formular_wertschoepfung, .link_formular_inhaber, .link_formular_profil').mouseleave(function(){
				if(geclickt==0){
					$('#magenta_feld').stop().animate({'opacity':'0.0'}, 200, function(){
						$(this).css('display','none');
					});
					$('#grau_feld').stop().animate({'opacity':'0.0'}, 200, function(){
						$(this).css('display','none');
					});
				}
		});
		$('.link_formular_markenfuehrung, .link_formular_wertschoepfung, .link_formular_inhaber, .link_formular_profil').click(function(){
			geclickt = 1;									 
			var breite = $(this).width();
			var hoehe = $(this).height();
			var offset_link = $(this).offset();
			$('#dialog_formular').css({'display':'block', 'left':offset_link.left-5, 'top':offset_link.top-5, 'color':'#000', 'background-color':'#E4E3E2', 'width':breite}).animate({width:'360px'});
			$('#magenta_feld').css({'display':'block', 'opacity':'0.8'});
			$('#grau_feld').css({'display':'block', 'opacity':'1.0'});
		});
		
	});
	
});
