﻿function getNumeric(selector, prop) { return $(selector).css(prop).match(/^\d+/) } function isIE() { return /msie 6\.0/i.test(navigator.userAgent) } function isChrome() { return /chrome/.test(navigator.userAgent.toLowerCase()) } function isSafari() { return /safari/i.test(navigator.userAgent) } function isOpera() { return /opera/i.test(navigator.userAgent) } $(document).ready(function() { var menuWidth = 282; var width = document.documentElement.clientWidth; document.getElementById('expand_menu').style.visibility = "hidden"; document.getElementById('expand_menu').style.marginLeft = "-280px"; document.getElementById('collapse_menu').style.visibility = "visible"; document.getElementById('collapse_menu').style.marginLeft = "265px"; $('a#collapse_menu').click(function() { $('#menuTest').hide(); document.getElementById('expand_menu').style.visibility = "visible"; document.getElementById('collapse_menu').style.visibility = "hidden"; if (isIE()) { document.getElementById('divMap').style.width = width + "px" } if (isChrome() || isSafari()) { $("#menuTest").hide(); $("#Tip").hide(); document.getElementById('divMap').style.marginLeft = "-1px" } }); $('a#expand_menu').click(function() { $('#menuTest').show(); document.getElementById('expand_menu').style.visibility = "hidden"; document.getElementById('collapse_menu').style.visibility = "visible"; if (isIE()) { document.getElementById('divMap').style.width = (width - menuWidth - 3) + "px"; $("#menuTest").show() } if (isChrome() || isSafari()) { $("#menuTest").show(); $("#Tip").show(); document.getElementById('divMap').style.marginLeft = "0px" } return false }); $(".Content").hide(); $(".inner_choice").click(function() { if (isIE()) { $(this).prevAll(".Content").hide(300); $(this).nextAll(".Content").hide(300); $(this).next(".Content").toggle(100) } else { $(this).prevAll(".Content").slideUp(300); $(this).nextAll(".Content").slideUp(300); $(this).next(".Content").slideToggle(100) } adjustMenu() }); $(".inner_choice").mouseover(function() { $(this).css({ backgroundImage: "url(Assets/Images/arrow2_expand.gif)", color: "#9E072E", cursor: "pointer" }) }); $(".inner_choice").mouseout(function() { $(this).css({ backgroundImage: "url(Assets/Images/arrow2_collapse.gif)", color: "#000000" }) }) });