// *** Home button rollover effect

if (document.images) {
   var home_active = new Image();
   home_active.src = "http://www.mojostock.com/blog/wp-content/themes/mojostock/images/home-active.gif";
   var home_inactive = new Image();
   home_inactive.src = "http://www.mojostock.com/blog/wp-content/themes/mojostock/images/home-inactive.gif";
}

function button_active() {
	if (document.images) {
		document["homebutton"].src = home_active.src;
	}
}

function button_inactive() {
	if (document.images) {
		document["homebutton"].src = home_inactive.src;
	}
}
