jQuery(document).ready(function(){
	jQuery('#contactform').submit(function(){
		action = jQuery(this).attr('action');
		
		jQuery('#submit').after('<img src="img/loading.gif" class="loading">')
					.attr('disabled','disabled');

		jQuery("input,textarea").removeClass("error");

		jQuery.post(action,jQuery("#contactform").serialize(),function(data){
			if(data=='Ok') {
				jQuery('#contactform').slideUp(600,function(){
					jQuery(".success").fadeIn(600)
				});
			} else if(data=='Error_Firma') {
				jQuery('input#firma').animate({opacity:"0"},200).addClass("error").animate({opacity:"1"},200).animate({opacity:"0"},200).animate({opacity:"1"},200);
			} else if(data=='Error_Branche') {
				jQuery('input#branche').animate({opacity:"0"},200).addClass("error").animate({opacity:"1"},200).animate({opacity:"0"},200).animate({opacity:"1"},200);
			} else if(data=='Error_Name') {
				jQuery('input#name').animate({opacity:"0"},200).addClass("error").animate({opacity:"1"},200).animate({opacity:"0"},200).animate({opacity:"1"},200);
			} else if(data=='Error_Telefon') {
				jQuery('input#telefon').animate({opacity:"0"},200).addClass("error").animate({opacity:"1"},200).animate({opacity:"0"},200).animate({opacity:"1"},200);
			} else if(data=='Error_Email') {
				jQuery('input#email').animate({opacity:"0"},200).addClass("error").animate({opacity:"1"},200).animate({opacity:"0"},200).animate({opacity:"1"},200);
			} else if(data=='Error_Message') {
				jQuery('textarea#message').animate({opacity:"0"},200).addClass("error").animate({opacity:"1"},200).animate({opacity:"0"},200).animate({opacity:"1"},200);
			} else if(data=='Error_Send') {
				jQuery(".senderror").fadeIn(600)
			}
			jQuery('#contactform #submit').attr('disabled','');
			jQuery('#contactform img.loading').fadeOut(500,function(){jQuery(this).remove()});
		});

	return false;
	});
});
