/*jQuery function*/
/*Used in index, album1 */
        
    function spanLink() {
        //turn any spans that has the class of spanLink into a color that matches the links
        $("span.spanLink").css("cursor", "pointer").css("color", "#fe5");
        //And make it behave like a linke when the cursor hovers.  The hover syntax is hover(over, out). 
        $(".spanLink").hover(
            function() {
                $(this).css("text-decoration","underline");
            },
            function() {
                $(this).css("text-decoration","none");
            }
        );
        //if IE, insert change the cursor to all spanLink spans.  Maybe I won't need this?
        //if ($.browser.msie&&$.browser.version==6.0) {
            //$(".spanLink").css("cursor","pointer");
            //alert($.browser.version);
        //};
    }
