$(document).ready(function() {
    $('img').each(function(){
        if (!$(this).attr('alt')) {
            $(this).attr('alt',"");
        }
    });
    if ($.browser.msie) {
        $(this).find("img[src$='.png']").css('behavior','url(img/iepngfix.htc)');
        $(this).find(".iepngfix").css('bevavior','url(img/iepngfix.htc)');
    }
});


