jQuery.noConflict();


jQuery(document).ready(function(){
    // Set form value as start value of srcipt
    jQuery.farbtastic('#DiagramColor').setColor(jQuery('#DiagramColor').val());
    
    // Start farbtastic
    jQuery('#color').farbtastic('#DiagramColor');
    
    // Set value into form
    jQuery('#DiagramColor').val(jQuery.farbtastic('#DiagramColor').color)
});
