$(document).ready( function() {

    $("#menu li img").each( function() {

        fn = function() {
            if ($(this).attr('class') != "selected") {
                if($(this).attr('src').lastIndexOf('_hover.png') == -1) {
                    img_path = $(this).attr('src');
                    img_path = img_path.replace('.png', '_hover.png');
                    $(this).attr('src', img_path);
                } else {
                    img_path = $(this).attr('src');
                    img_path = img_path.replace('_hover.png', '.png');
                    $(this).attr('src', img_path);
                }
            }
        }

        $(this).hover(fn);
        $(this).mouseout(fn);
    });

    $("#search-bar-input").click( function() {
        if($(this).val() == 'Search...') {
            $(this).val('');
        }
    });

});
