﻿$(document).ready(function () {
    $("#navigationList li").each(function () {
        if ($.url.attr('path') == $(this).find('a').attr('href')) {
            //alert($(this).find('a').attr('href'));
            menu(this, "active");
        }
    });

    $("#slider").easySlider({
        auto: true,
        continuous: true,
        speed: 1400,
        pause: 6000
    });

    $("#contentTop").css({'background': 'transparent', 'height': '0px'});
});

function menu(control, status) {
    if (status == "active") {
        $(control).css('background', 'transparent url(/images/menu_middle_hover.png) repeat-x 0px 0px');
        $(control).find('a').css('color', '#000');
    }
}
