/*	jQuery Callback-Formular */

	jQuery(document).ready(function(){
		jQuery('#rueckrufform').submit(function(){
			action = jQuery(this).attr('action');

			jQuery('#rueckrufform').before('<img src="fileadmin/templates/skins/skin_bw-energy/images/callback_loader.gif" class="loading">');
			jQuery('#submit').attr('disabled','disabled');

			jQuery("input,textarea").removeClass("error");

		jQuery.post(action,jQuery("#rueckrufform").serialize(),function(data){
			if(data=='Ok') {
				jQuery('#rueckrufform').slideUp(600,function(){
					jQuery(".success").fadeIn(600);				
				});
				_gaq.push(['_trackEvent', 'Kontakte', 'Rueckrufbitte']);
	                        jQuery('#rueckrufform').before('<img height="1" width="1" class="trackingpixel" style="border-style:none;" alt="" src="http://www.googleadservices.com/pagead/conversion/1021973021/?label=tVc9CIP_0gEQnaSo5wM&amp;guid=ON&amp;script=0"/>');   										
			} else if(data=='Error_1') {
				jQuery('input#phone').animate({opacity:"0"},200).addClass("error").animate({opacity:"1"},200).animate({opacity:"0"},200).animate({opacity:"1"},200);
			}
			jQuery('#rueckrufform #submit').attr('disabled','');
			jQuery('#telefoninfos img.loading').fadeOut(500,function(){jQuery(this).remove()});
		}); 

	return false;
	});
});
