﻿/// <reference path="jquery.js" />
$(function() {
    /*var a = $("#SiteManage a");
    var href = a.attr("href");

    a.attr("href", "javascript:void(0);").click(function() {
        window.location.href = href;
    });*/

    var imgWidth, imgHeight, textWidth, textHeight;
    imgWidth = $('.art-Logo-text img').width();
    imgHeight = $('.art-Logo-text img').height();
    textWidth = $('.art-Logo-name span').width();
    textHeight = $('.art-Logo-name span').height();

    if (imgWidth != null && imgHeight != null) {
        $('#slogan-text').css({ width: imgWidth + 'px', height: imgHeight + 'px' });
    }
    $('#name-text').css({ width: textWidth + 'px', 'white-space': 'nowrap', height: textHeight + 'px' });
    $('a.iframe').fancybox({
        'width': 400,
        'height': 200,
        'type': 'iframe'
    });

    $("a[href='#RelatedLink']").fancybox({
        'width': 400,
        'height': 400,
        'hideOnContentClick': false
    });

    $('ul.jd_menu').jdMenu({
        showDelay: 50,
        hideDelay: 50,
        disableLinks: false
    });

});