
function MM_changeProp(objId,x,theProp,theValue) { //v9.0
  var obj = null; with (document){ if (getElementById)
  obj = getElementById(objId); }
  if (obj){
    if (theValue == true || theValue == false)
      eval("obj.style."+theProp+"="+theValue);
    else eval("obj.style."+theProp+"='"+theValue+"'");
  }
}
//Rounded corners on widget divs
$(document).ready(function(){	
$(".widget_box").corner("round 8px").parent().css('padding', '4px').corner("round 10px")
});	
// Cufon init
Cufon.replace('.storytitle a');

// IE 7 Overrides
// Split the string into part [0] and part [1]
temp=navigator.appVersion.split('MSIE');
// Parse the string for the "6" in 6.0
ieVer=parseInt(temp[1]);
// Is it greater than 6?
var isie7=(ieVer > 6 && ieVer < 9)?true:false;

if (isie7==true){
	document.write('<style type="text/css" media="screen">#override_rightsidebar{padding:0 -10px;}#searchPositionBlogs{margin-top:18px;margin-right:-15px;position:relative;width:300px;float:right;}</style>');
}