$(document).ready(function() { 
	$('a#home').click(function() {
    	$('#kiwibcn').show('slow');
    	$('#serv').hide('fast');
    	$('#proy').hide('fast');
    	$('#nos').hide('fast');
    	$('#cont').hide('fast');
    	return false;
  	});

	$('a#servicio').click(function() {
    	$('#kiwibcn').hide('fast');
    	$('#serv').show('slow');
    	$('#proy').hide('fast');
    	$('#nos').hide('fast');
    	$('#cont').hide('fast');
    	return false;
  	});

	$('a#proyectos').click(function() {
    	$('#kiwibcn').hide('fast');
    	$('#serv').hide('fast');
    	$('#proy').show('slow');
    	$('#nos').hide('fast');
    	$('#cont').hide('fast');
    	return false;
  	});

	$('a#nosotros').click(function() {
    	$('#kiwibcn').hide('fast');
    	$('#serv').hide('fast');
    	$('#proy').hide('fast');
    	$('#nos').show('slow');
    	$('#cont').hide('fast');
    	return false;
  	});
  	
  	$('a#contacto').click(function() {
    	$('#kiwibcn').hide('fast');
    	$('#serv').hide('fast');
    	$('#proy').hide('fast');
    	$('#nos').hide('fast');
    	$('#cont').show('slow');
    	return false;
  	});
  	
  	
  	$('#submitinput').click(function() {
		$('#loading').fadeIn("slow");
		});
	
		$('#myForm').ajaxForm(function(data) {
			if (data==1){
				$('#success').fadeIn("slow");
				$('#myForm').resetForm();
				$('#loading').fadeOut("slow");
			}
			else if (data==2){
				$('#badserver').fadeIn("slow");
				$('#loading').fadeOut("slow");
			}
			else if (data==3)
			{
				$('#bademail').fadeIn("slow");
				$('#loading').fadeOut("slow");
		}
	});
  	
  	
});

