﻿
$(document).ready(function() {

    if (document.getElementById("divClock") != null) {
        HTTPRInit();
    }

    if (document.getElementById("divTopHeader") != null) {
        var glo = new SWFObject("images/header.swf", "swfGlobe", "594", "118", "8", "#FFFFFF");
        glo.write("divTopHeader");
    }

    if (jQuery.browser.msie == true && jQuery.browser.version == "6.0") {
        $("body.subPage div#divContentBlock").css('margin-top', '-2px');
        $(".divGlobalAff h3").css('margin-top', '0px');
        $("body#intro").css('width', '800px');
    }

    if (jQuery.browser.msie == true && jQuery.browser.version == "7.0") {
        $("body.subPage div#divContentBlock").css('margin-top', '-2px');
        $("body.subPage div#divNavigation ul.menuSub li a").css('padding', '0px');
        $("body.subPage div#divNavigation ul.menuSub li").css('padding-top', '0px');
        $("div#divFooter a").css('margin-right', '26px');
        $("div#divFooter a").css('padding-bottom', '2px');
        $(".divGlobalAff h3").css('margin-top', '0px');
    }

    $("li.menuArea a[href='sitemap.htm']").click(function() {
        return false;
    });

    $("li.menuArea").mouseover(function() {
        $(this).children("ul.menuSub").css('display', 'block');
    });

    $("li.menuArea").mouseout(function() {
        $(this).children("ul.menuSub").css('display', 'none');
    });

    $("#divCopyright").load('includes/copyrights.asp');
   
});
