var ievs = (/MSIE (\d+\.\d+);/.test(navigator.userAgent));

// IF BROWSER IS IE 6 LOAD IE6 STYLE
if (ievs){
   var iev=new Number(RegExp.$1);
   if (iev==6) {
       document.write('<link rel="stylesheet" type="text/css" href="css/styleie6.css" />');
   }
}

if (ievs){
   var iev=new Number(RegExp.$1);
   if (iev==7) {
       document.write('<link rel="stylesheet" type="text/css" href="css/style.css" />');
   }
}

if (ievs){
   var iev=new Number(RegExp.$1);
   if (iev==8) {
       document.write('<link rel="stylesheet" type="text/css" href="css/style.css" />');
   }
}




else 
    document.write('<link rel="stylesheet" type="text/css" href="css/style.css" />');
