﻿// JavaScript Document
$(document).ready(function() {
if ((screen.width<=1200) ) {
//alert('Resolucion ='+screen.width+' igual o menor de 1200');
$("link[rel=stylesheet]:not(:first)").attr({href : "menu1024.css"});
}
else {
//alert('Resolucion: '+screen.width+' Mayor de 1200');
$("link[rel=stylesheet]:not(:first)").attr({href : "menu.css"});
}
});
