//Change this to the site root
//Note: must end in forward slash "/"
var siteRoot = "https://mshctesting.sslpowered.com/iav0808i/";

// JavaScript Document
$(function(){
	$(".hmi").hover(
		function() {
			$("#sel").remove();
			$('.current').removeClass('current');
			var w = $(this).width();
			$(this).append("<div id='sel'><img class='lc' src='http://www.iavaheroesgala.org/www/img/bg_menu_active_left.gif' /><img src='http://www.iavaheroesgala.org/www/img/bg_menu_active_right.gif' /></div>");
			if ($.browser.msie)
				$("#sel").css("width",w+'px');
		},
		function() {
			$("#sel").remove();
			$('.current').removeClass('current');
			SetCurrent();
		}
	);
	SetCurrent();
});

function SetCurrent() {
	var w = $(current+' a').width();
	$(current+' a').append("<div id='sel'><img class='lc' src='http://www.iavaheroesgala.org/www/img/bg_menu_active_left.gif' /><img src='http://www.iavaheroesgala.org/www/img/bg_menu_active_right.gif' /></div>");
	$(current).addClass('current');
	if ($.browser.msie)
		$("#sel").css("width",w+'px');
}