﻿$(document).ready(function() {
    //$("img").each(function() {
    //    if ($(this).attr("alt") != "")
    //        $(this).attr("title", $(this).attr("alt"));
    //})

    $("img").altFix();
    
});






(function($) {
    $.fn.altFix = function() {        
        $(this).each(function() {
            if ($(this).attr("alt") != "")
                $(this).attr("title", $(this).attr("alt"));
        });
    }
})(jQuery);






