$(document).ready(function () {
    $("div#features").cycle({
        speed: 1000,
        pager: '#numbers',
        timeout: 6000
    });

    $('ul#navigation').superfish({
        speed: "fast",
        delay: 250
    });

    // Custom Positioning of Dropdowns
    $("#nav ul#navigation > li").each(function () {
        var id = $(this).attr("id");
        var dropWidth = $("#nav ul#navigation ul").width();
        var curWidth = $(this).width();
        var ratio = Math.round((curWidth - dropWidth) / 2);

        ratio -= 10;

        $(this).find("ul").css("left", ratio + "px");
    });

    $("table.customTable tr:even td").css("background-color", "#f5eede");

    $(".rollover").hover(function () {
        $(this).attr('src', $(this).attr('src').replace('off', 'on'));
    }, function () {
        $(this).attr('src', $(this).attr('src').replace('on', 'off'));
    });

    $(".lightBox").lightBox();

    Shadowbox.init();
});
