﻿// Aligns non-hebrew text to left.
// Comment because of Victors request.
// Kamil.

/*var hebrewRegex = /^[^תשרקצפעסנמלכיטחזוהדגבא]+$/i;

$(function () {
    $(".SongsWidget-song-name").each(function () {
        $("a", this).each(function () {
            var link = $(this);
            
            if (hebrewRegex.test(link.text())) {
                link.parent().css({ float: "left", marginLeft: "5px" });
            }
        });
    });
});*/
