$(document).ready(function() {
    // fake :last-child pseudoclass for IE6, IE7, IE8
    if(jQuery.browser.msie && parseInt(jQuery.browser.version) <= 8) {
        $("#topnav > li:last-child").addClass("ie_last-child");
    }

    // fake :hover pseudoclass for IE6
    if(jQuery.browser.msie && parseInt(jQuery.browser.version) <= 6) {
        $('#topnav li').hover(function() {
            $(this).addClass('ie6_hovering');
        }, function() {
            $(this).removeClass('ie6_hovering');
        });
    }

    // Show/hide default form field text
    $("input[title]").hint();

    // homepage slideshow
    $("ul#slideshow").before('<div id="slideshow_nav">')
    .cycle({
        timeout: 10000,
        speed: 400,
        pager: "#slideshow_nav",
        cleartypeNoBg: true
    });

    // pause the slideshow when a thumbnail is clicked
    $("#slideshow_nav a").click(function() {
        $("ul#slideshow").cycle('pause');
    });
});

