// HACK HACK HACK

var url = document.location.href;

if (url.indexOf('ga3.org/campaign/epa_coalrivermtn/37eudki91j3enw3k') > 0) {
 	//alert(' ');
	document.location.replace("http://ga3.org/campaign/epa_coalrivermtn")
}

$(document).ready(function(){

// ----------------------------------------
// Layout
// ----------------------------------------

  // Dynamic Layout
  var browserWidth = getBrowserWidth();
  if (browserWidth <= 990)  { $('body').addClass('medium'); }
  if (browserWidth > 990)   { $('body').removeClass('medium'); }
  
// ----------------------------------------
// Styles
// ----------------------------------------

  $('.rounded').corner();
  $('.button').corner();
  $('.top').corner('top');



});

// ----------------------------------------
// Functions
// ----------------------------------------

  function getBrowserWidth() {
    if (window.innerWidth) {
      return window.innerWidth;
    } else if (document.documentElement && document.documentElement.clientWidth != 0) {
      return document.documentElement.clientWidth;
    } else if (document.body) {
      return document.body.clientWidth;
    }
      return 0;
  }
