var chrome = navigator.userAgent.toLowerCase().indexOf('chrome') > -1;
var ie6 = navigator.userAgent.toLowerCase().indexOf('msie 6.0') > -1;
var ie7 = navigator.userAgent.toLowerCase().indexOf('msie 7.0') > -1;
var ie8 = navigator.userAgent.toLowerCase().indexOf('msie 8.0') > -1;
var ie9 = navigator.userAgent.toLowerCase().indexOf('msie 9.0') > -1;
var ff30 = navigator.userAgent.toLowerCase().indexOf('firefox/3.0') > -1;
var ff36 = navigator.userAgent.toLowerCase().indexOf('firefox/3.6') > -1;
var ff = navigator.userAgent.toLowerCase().indexOf('firefox') > -1;
var safari = navigator.userAgent.toLowerCase().indexOf('safari') > -1;
var opera = navigator.userAgent.toLowerCase().indexOf('opera') > -1;

	
	

function detectarNavegador(){

	if (ff30){
		cssFirefox30();
	}else if(chrome){
		cssChrome();
	}else if(ie6){
		cssIE6();
	}else if (ie7){
		cssIE7();
	}else if (ie8){
		cssIE8();
	}else if (ie9){
		cssIE9();
	}else if (ff36){
		cssFirefox36();
	}else if (safari){
		cssSafari();
	}else if (opera){
		cssOpera();
	}

}


function cssFirefox30 (){
		
}

function cssFirefox36 (){
		
}




function cssIE6 (){
		alert("Estas usando un navegador web obsoleto (Internet Explorer 6). La web no se mostrará correctamente. Te aconsejamos actualizar tu navegador por tu propia seguridad, y asi poder mejorar tu experriencia de usuario en internet. Un saludo!");
}
function cssIE7 (){
	$("#escudo").css("position", "relative");
	$("#escudo").css("margin-top", "-22px");
	$("#idioma").css("margin-left", "1px");
	$("#idioma").css("position", "relative");
	$("#accesibilidad").css("margin-top", "-22px");
	$("#accesibilidad").css("margin-left", "4px");
	$("#menu_turismo").css("margin-top", "-180px");
	$("#contenido_up").css("margin-top", "-60px");
	$(".footer_min").css("margin-top", "10px");
	$(".footer_min").css("padding", "10px 20px");
	$("footer p").css("line-height", "45px");
	$("footer p").css("text-align", "center");
	$(".arriba").css("margin-top", "-15px");
	$("#slider").css("margin-top", "-70px");
	$("#slider_mask").css("margin-top", "-70px");
	$("#destacados").css("margin-top", "-70px");
	$("#agenda").css("margin-top", "25px");
	$("#acuerdos").css("margin-top", "40px");
	$("#thumbs1 ul li, #thumbs2 ul li, #thumbs3 ul li, #thumbs4 ul li, #thumbs5 ul li,").css("display", "inline");
}
function cssIE8 (){
	$("#slider_mask").css("margin-top", "0px");
	$("#slider").css("margin-top", "0px");
	$("#destacados").css("margin-top", "-30px");
	$("#agenda").css("margin-top", "40px");
	$("#section").css("margin-top", "35px");
}

function cssIE9 (){
		
}

function cssChrome (){
		
}
function cssSafari (){
		
}




function cssOpera (){
	
		 
}

