
$("document").ready(function(){

/**************************index.php*********************/
	$("#arreglo_portada").css({
		"margin": "0 0 0 3%",
		"padding": "0 5% 0 5%",
		"width": "420px",
		"overflow": "auto"
	});
	$(".link_not").css({
		"margin": "0 0 0 0",
		"text-decoration": "none",
		"color": "#633b1b"
	});
	$(".leermas").css({
		"text-decoration": "none",
		"color": "#555555"
	});
	$("img").css({
		"border": "0"
	});
/********************Fin***del***index.php*********************/
/*************************Menus********************************/
	$("#contenedor_menus").css({
		"overflow": "hidden",
		"width": "100%",
		"min-width": "100%",
		"min-height": "100%",
		"height": "100%"	
	});
	//capa tipos
	$("#tipo_menu").css({
		"overflow": "auto",
		"float": "left",
		"width": "27%",
		"height": "99%"	
	});
	$("#tipo_menu table").css({
		"width": "99%"
	});
	$("#tipo_menu table td").css({
		"font": "bold 130% Helvetica",
		"background-color": "#f7e8aa",
		"text-align": "center"
	});
	$(".td_fondo").mouseover(function(){
		$(this).css({
			"background-color": "#999999"
		});
	});
	$(".td_fondo").mouseout(function(){
		$(this).css({
			"background-color": "#f7e8aa"
		});	
	});
	$(".link_tipos").mouseover(function(){
		$(this).css({
			"color": "#FFFFFF"
		});
	});
	$(".link_tipos").mouseout(function(){
		$(this).css({
			"color": "#633a11"
		});	
	});
	//fin capa tipos
	//menús centro
	$("#menus_centro").css({
		"overflow": "auto",
		"float": "right",
		"width": "69%",
		"color": "#633a11",
		"max-height": "500px",
		"height": "500px"	
	});
	$("#menus_centro table").css({
		"margin": "4% 0 0 0",
		"width": "99%"
	});
	$("#menus_centro table td").css({
		"font": "bold 100% Helvetica",
		"border": "1px solid #999999",
		"text-align": "center"
	});
	//fin menús centro

/*******************Fin de Menús************************************/
	});
