/**
 *	@purpose:   handles the creation of tabs
 *	@author:    robert.leurs@cooloxygen.com
 *	@version:   1.0
 */

jQuery(function () {

/**
 *	function to actually change the tags
 */
    function set_unit(objElement,unitVal){
        
        $(objElement).html(unitVal);
    };
  
/**
 *	now let's set some values for each tag
 */  
    // meters
    set_unit("span.unit_mtr","Mtr");
    // Knots
    set_unit("span.unit_knots","Kn");
    // Rpm
    set_unit("span.unit_rpm","Rpm");
    // Kilometers
    set_unit("span.unit_km","Km");
    // Liters
    set_unit("span.unit_ltr","Ltr");
    // Metric Tons
    set_unit("span.unit_metric_ton","T");
    // Horsepower
    set_unit("span.unit_horspower","Hp");
    // Euro's
    set_unit("span.unit_euro","EUR");
});