/**
 * JQuery Convert extension
 *
 */

convertFloat = function(n)
{
	return n=n.toFixed(2),n=n>999.99?n.toString().replace(translation.FORMAT.dn999p[0],translation.FORMAT.dn999p[1]):n.toString().replace(translation.FORMAT.dn999m[0],translation.FORMAT.dn999m[1]);
}
