$('.colorpicker').click(function(){Colorize();});
var chosencolor;
function Colorize(){
$('.colorpicker').html("
| person |
| project |
| question |
| idea |
");
$('.td1').css('background-color',customColor("person"));
$('.td2').css('background-color',customColor("project"));
$('.td3').css('background-color',customColor("skill"));
$('.td4').css('background-color',customColor("deliverable"));
$('.td5').css('background-color',customColor("objective"));
$('.td1').click(function(){chosencolor="person"});
$('.td2').click(function(){chosencolor="project"});
$('.td3').click(function(){chosencolor="skill"});
$('.td4').click(function(){chosencolor="deliverable"});
$('.td5').click(function(){chosencolor="objective"});
}
$('#textanalyser').submit(function(){return false;});
$('.tutorial').click(function(){});