jQuery(function($){
	// show the form if needed
	$('#showForm').click(function(e) {
		e.preventDefault();
		$('#cv_form').toggle();
	});
});
