function home_init()
{
	$("div[id^='div_home_panel_']").mouseover(function()
		{
			var div_id = new String(this.id).replace("div_", "a_");
			$("#" + div_id).css({"background":"#cc0000"});
		}
	).mouseout(function()
		{
			var div_id = new String(this.id).replace("div_", "a_");
			$("#" + div_id).css({"background":"#7596ba"});
		}
	).click(function()
		{
			var div_number = parseInt(new String(this.id).charAt(new String(this.id).length - 1));
			window.location.href = locations[div_number];
		}
	);
	
	$("div[id^='a_home_panel_']").mouseover(function()
		{
			$("#" + this.id).css({"background":"#cc0000"});
		}
	).mouseout(function()
		{
			$("#" + this.id).css({"background":"#7596ba"});
		}
	).click(function()
		{
			var div_number = parseInt(new String(this.id).charAt(new String(this.id).length - 1));
			window.location.href = locations[div_number];
		}
	);
}
