
var bwIE60 = (navigator.appVersion.indexOf("MSIE 6.0") != -1) ? "True" : "False";
var bwIE70 = (navigator.appVersion.indexOf("MSIE 7.0") != -1) ? "True" : "False";
var bwIE80 = (navigator.appVersion.indexOf("MSIE 8.0") != -1) ? "True" : "False";
var bwIE90 = (navigator.appVersion.indexOf("MSIE 9.0") != -1) ? "True" : "False";

$(document).ready(function () {		
	// top menu
	$(".hlbMenuMain li").each(function () {
		// menu SHOW
		$(this).mouseenter(function () {									
			$("a:first", this).toggleClass("hlbMenuMainSelected");
			var offset = $("a:first", this)[0].offsetLeft;
			if (bwIE60 == "True" || bwIE70 == "True" || bwIE80 == "True" || bwIE90 == "True") {
				offset = this.offsetLeft;
			}
			$("div:first", this).css("left", offset + "px");
			$("div:first", this).show();
		});
		// menu HIDE
		$(this).mouseleave(function () {
									 //alert(document.getElementById('55').offsetWidth);
			$("div:first", this).hide();
			$("a:first", this).toggleClass("hlbMenuMainSelected");
		});
	});
	
	
	if($("#slogan_text")){
		var sloganHeight = $("#slogan_text").outerHeight();
		$("#slogan_opacity").css("height", sloganHeight);
		$("#slogan_td").css("height", sloganHeight);
	}	
});



