﻿swfobject.registerObject("XLMovie", "9.0.115", "../include/expressInstall.swf");

$(document).ready(function () {

    $("#topnav li").prepend("<span></span>");

    $("#topnav li").each(function () {
        var linkText = $(this).find("a").html();
        $(this).find("span").show().html(linkText);
    });

    $("#topnav li").hover(function () {
        $(this).find("span").stop().animate({
            marginTop: "-30"
        }, 250);
    }, function () {
        $(this).find("span").stop().animate({
            marginTop: "0"
        }, 250);
    });

    $(".Port ul li").hover(function () {
        $(this).css({ 'z-index': '10' });
        $(this).find('img').stop()
		.animate({
		    marginTop: '-210px',
		    marginLeft: '-180px',
		    top: '50%',
		    left: '50%',
		    width: '420px',
		    height: '360px'
		}, 200);

    }, function () {
        $(this).css({ 'z-index': '8' });
        $(this).find('img').stop()
		.animate({
		    marginTop: '0',
		    marginLeft: '0',
		    top: '0',
		    left: '0',
		    'z-index': '0',
		    width: '140px',
		    height: '120px'
		}, 600, function () { $(this).parent().css({ 'z-index': '0' }); });
    });
});
