var colors = [ "#cc1212", "#f7ef05", "#fa9f02", "#2df013", "03befc"];
var currentColor = -1;

function initHover() { 
var isMSIE = /*@cc_on!@*/false;
if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)) {
	alert("Hey there, best friend! Thanks for going on my website! Here's the problem, though." + '\n' + '\n' + "You HAD to use Internet Explorer!" + '\n' + '\n' + "The issue is, Internet Explorer doesn't like working! Ever! And it was hard enough making this site look good in GOOD BROWSERS. So here's what you do: download another browser! Like Google Chrome! Or Firefox! Else, be content with the fact that Jearb.biz will look terrible JUST FOR YOU.");
}
$("#logo").animate({opacity: 1}, 1000);
  var anchors = document.getElementsByTagName("a");

  for(var i=0; i<anchors.length; i++) {
    var anchor = anchors.item(i);
    
    anchor.onmouseover = doHover;
    anchor.onmouseout = cancelHover;
  }
  
}

function doHover() {
	currentColor++;
	if (currentColor > 4)
		currentColor = 0;
  this.style.color = colors[currentColor];
}

function cancelHover() {
var getvalue=this.getAttribute("id")
if (getvalue=="glow")
  {
  this.style.color = "white";
  } else {
  this.style.color = "black";
  }
  
}

