$(document).ready(function() {

    $("#searchbutton").click(
    function() {
        document.location.href = '/search-results.aspx?sectionid=32&cx=001653314553456783151:mefeyvxtnso&cof=FORID:10&q=31&sa=Search&q=' + $("#keywords").val();
        return false;
    }
   );
    $("#searchtext").keypress(
    function(e) {
        if (e.which == 13)
        { document.location.href = '/search-results.aspx?sectionid=32&cx=001653314553456783151:mefeyvxtnso&cof=FORID:10&q=31&sa=Search&q=' + $("#keywords").val(); return false; }
    }
    );
    
    $('div#nav ul').superfish({});

    if ($('div#slideshow').length) {
        setInterval('slideSwitch()', 5000);
        addImageCutaway();
    }

    $('ul.expand').each(function() {
        id = $(this).attr('id');

        switch (id) {
            case 'subnav': expandableMenu(id, 'ol'); break;
            case 'downloads': expandableMenu(id, 'div'); break;
        }
    });

    $('.imageswitch a').click(function() {
        $('.mainimage').attr("src", $(this).find("img").attr("src").replace('mini/',''));
    });

});