var Site = {
	
start: function(){
		
		
	//	if (efa_fontSize) efa_fontSize.efaInit();
	
	
	function getInternetExplorerVersion()

{
  var rv = 6; // Return value assumes failure
  if (navigator.appName == 'Microsoft Internet Explorer')
  {
    var ua = navigator.userAgent;
    var re  = new RegExp("MSIE ([0-9]{1,}[\.0-9]{0,})");
    if (re.exec(ua) != null)
      rv = parseFloat( RegExp.$1 );
  }
  return rv;
}	
	
function checkVersion(){
 var ver = getInternetExplorerVersion();
if ( ver < 6.0 )  
msg = "dfdd";
    else
	{
     $('headline').makeRounded('top right , bottom right', {radius: 7});
$('header_bottom').makeRounded('top right , bottom right', {radius: 7});
//$('col3').makeRounded('top right , bottom right',  {radius: 7});
msg = "You should upgrade your copy of Internet Explorer.";
}
};
checkVersion();
		


function blur_links() {this.blur()}		
a_tags=document.getElementsByTagName('a')
for (i=0;i<a_tags.length;i++) {a_tags[i].onfocus=blur_links}

//new Tips($$('a[title]'), {maxOpacity: 0.9, maxTitleChars: 25});


	}
	
};

window.addEvent('domready', Site.start);
