$(function(){
	
	$('div.widget').cornerz({radius:10, background: "#FFFFFF"});
	// $('#headers').cornerz({radius:10, background: "#FFFFFF", corners: "tl tr"});
	
	$('#headers').cornerz({radius:10, background: "#FFFFFF"});
	
	$('#footer div.r1').cornerz({radius:10, background: "#FFFFFF"});
	// $('#sidebars a').hover( function() {$(this).effect("highlight", { color: "#86A7CA" }, 200); });
	
});



var out_color;
var over_color = "#ffffe6";
function overLine(obj)
{
	out_color = obj.style.backgroundColor;
	obj.style.backgroundColor = over_color;
}

function outLine(obj)
{
	obj.style.backgroundColor = out_color;
}


function toNum( num )
{
  str = new String(num);

  if (str.indexOf( "," ) > 0)
  {
    new_str = str.split(',');
    res_str = new_str[0] + "." + new_str[1];
    return res_str;
  }
return num
}

