﻿	$(document).ready(function() {
        $("span.ext").hover(function(){
            $("span.loc").hide();
            $(this).prev("span").show();},
            function(){$("span.loc").fadeOut(2000);});
        
    }); 
