//When the DOM tree is loaded

jQuery.noConflict();
jQuery(document).ready(function() {

    //Add pointer class to .photo .item
jQuery(".photo .item").addClass("pointer");

    //Hover over photo fade in hidden span
jQuery(".photo .item").hover(
        function() {
            $(this).find("span").fadeIn();
        },
        function() {
            $(this).find("span").fadeOut();
        }
    );

});


