//$(document).ready(function () {
//    if($(window).width()>=1280){
//      window.location.href = './bigview/index.html';
//    }
//});



function setColor(rgb) {
  $("table").each(function (i) {
    if ($(this).css("background-color")!= 'rgb(255, 255, 255)' && $(this).css("background-color")!= 'rgba(0, 0, 0, 0)' && $(this).css("background-color")!= 'transparent' && $(this).css("background-color")!= '#ffffff') {
      $(this).css("background-color", rgb);
    }
  });
  $("td").each(function (i) {
    if ($(this).css("background-color")!= 'rgb(255, 255, 255)' && $(this).css("background-color")!= 'rgba(0, 0, 0, 0)' && $(this).css("background-color")!= 'transparent' && $(this).css("background-color")!= '#ffffff') {
      if(!$(this).hasClass("colorQ")){
        $(this).css("background-color", rgb);
      }
    }
  });
  $("div").each(function (i) {
    if ($(this).css("background-color")!= 'rgb(222, 222, 222)' && $(this).css("background-color")!= 'rgb(204, 204, 204)' && $(this).css("background-color")!= 'rgb(255, 255, 255)' && $(this).css("background-color")!= 'rgba(0, 0, 0, 0)' && $(this).css("background-color")!= 'transparent' && $(this).css("background-color")!= '#ffffff') {
      if(!$(this).hasClass("colorchooser")){
        $(this).css("background-color", rgb);
      }
    }
  });
}

