﻿/// <reference path="/js/jquery-1.4.1-vsdoc.js" />

$(function () {
    $('div#menu a').each(function (index) {
        $(this).find('span.left').width(($(this).outerWidth()) + 8);
    });
    $(".lavaLamp").lavaLamp({ fx: "linear", speed: 250 });

    var $activer = $('div#menu .active a');
    if ($activer.size() > 0)
        $("li.back").css({ "left": $activer.position().left+8 + "px", "width": $activer.outerWidth() + "px" });
});
