 $(document).ready(function() {
	 $("#email").click(function() {
		 if( $('#email_form').is(':hidden') ) {
			 $("#cv_iframe").hide();
			 $("#email_form").show("slow");
		 }else{
			 $("#email_form").hide("slow");
		 }
	 });
	 $("#show_cv").click(function() {
		 if( $('#cv_iframe').is(':hidden') ) {
			 $("#email_form").hide();
			 $("#cv_iframe").show("slow");
		 }else{
			 $("#cv_iframe").hide("slow");
		 }
	 });
 });
 
 $(function(){
	    $("#ajaxEmailForm").submit(function(){
	        dataString = $("#ajaxEmailForm").serialize();
	        $.ajax({
	        type: "POST",
	        url: "email.php",
	        data: dataString,
	        dataType: "json",
	        success: function(data) {
	        	if( data.error_no != 0){
	        		alert(data.error);
	        		return false;
	        	}
	        	$("#from").val("");
	        	$("#email_content").val("");
	        	$("#email_form").hide("slow");
	        	$(".thankju").show("slow");
	        	$(".thankju").delay(1300).hide("slow");
	        }
	      });
	      return false;            
	    });
	});
