// JavaScript Document
// Muestra otro estilo para resoluciones mas pequenas
if (1280 > screen.width){
  document.write('<link rel=\"stylesheet\" href=\"css/template_peq.css\" type=\"text/css\"/>');
  document.write('<link rel=\"stylesheet\" href=\"css/blue_peq.css\" type=\"text/css\"/>');
  document.write('<link rel=\"stylesheet\" type=\"text/css\" href=\"css/menu_peq.css\"/>');
}
else {
  document.write('<link rel=\"stylesheet\" href=\"css/template.css\" type=\"text/css\"/>');
  document.write('<link rel=\"stylesheet\" href=\"css/blue.css\" type=\"text/css\"/>');
  document.write('<link rel=\"stylesheet\" type=\"text/css\" href=\"css/menu.css\"/>');
}
