function init() {

	hoverHome();
	externalLinks()
}
function externalLinks() {
 if (!document.getElementsByTagName) return;
 var anchors = document.getElementsByTagName("a");
 for (var i=0; i<anchors.length; i++) {
   var anchor = anchors[i];
   if (anchor.getAttribute("href") &&
       anchor.getAttribute("rel") == "external")
     anchor.target = "_blank";
 }
}
function hoverHome() {



	var divs = document.getElementsByTagName("div");



	for(var q = 0; q < divs.length; q++) {



		if(divs[q].className == "comic1_box") {divs[q].onmouseover = function() {this.className = "comic1_hover";}; divs[q].onmouseout = function() {this.className = "comic1_box";};}

		if(divs[q].className == "comic2_box") {divs[q].onmouseover = function() {this.className = "comic2_hover";}; divs[q].onmouseout = function() {this.className = "comic2_box";};}
		
	}



}
window.onload = init;

