/*if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)){
	var ieversion=new Number(RegExp.$1);
	if (ieversion>=7){ //ie7

		if ((screen.width>800) && (screen.height>600)){
			estilo_res = "estilos_res2.css";
			estilo_res_ie_versao = "estilos_res2_ie7.css";
			
		}else{
			estilo_res = "estilos_res1.css";
			estilo_res_ie_versao = "estilos_res1_ie7.css";
		}


	 }else if (ieversion>=6){ //ie6


		if ((screen.width>800) && (screen.height>600)){
			estilo_res = "estilos_res2.css";
			estilo_res_ie_versao = "estilos_res2_ie6.css";
			
		}else{
			estilo_res = "estilos_res1.css";
			estilo_res_ie_versao = "estilos_res1_ie6.css";
		}

	 }
	}else{ // nao e ie

		if ((screen.width>800) && (screen.height>600)){
			estilo_res = "estilos_res2.css";
			
		}else{
			estilo_res = "estilos_res1.css";
		}
}*/

	//var ieversion=new Number(RegExp.$1);
	var ieversion = Number($.browser.version);
//	alert(ieversion);
	if($.browser.msie)
	{
		if(ieversion>=6){
			if ((screen.width>800) && (screen.height>600)){
				estilo_res = "estilos_res2.css";
				estilo_res_ie_versao = "estilos_res2_ie8.css";
				//alert(ieversion);
			}else{
				estilo_res = "estilos_res1.css";
				estilo_res_ie_versao = "estilos_res1_ie8.css";
			}
			
		}else if (ieversion>=7){ //ie7
	
			if ((screen.width>800) && (screen.height>600)){
				estilo_res = "estilos_res2.css";
				estilo_res_ie_versao = "estilos_res2_ie7.css";
				
			}else{
				estilo_res = "estilos_res1.css";
				estilo_res_ie_versao = "estilos_res1_ie7.css";
			}
	
	
		 }else if (ieversion>=6){ //ie6
	
	
			if ((screen.width>800) && (screen.height>600)){
				estilo_res = "estilos_res2.css";
				estilo_res_ie_versao = "estilos_res2_ie6.css";
				
			}else{
				estilo_res = "estilos_res1.css";
				estilo_res_ie_versao = "estilos_res1_ie6.css";
			}
	
		 }
	}else{ // nao e ie

		if ((screen.width>800) && (screen.height>600)){
			estilo_res = "estilos_res2.css";
			
		}else{
			estilo_res = "estilos_res1.css";
		}
	}

document.write ("<link href=layout/"+estilo_res+" rel='stylesheet' type='text/css'>");
document.write ("<link href=layout/"+estilo_res_ie_versao+" rel='stylesheet' type='text/css'>");