// Initializes User Scripts:

$(document).ready(function() {

    // Selects text in Search Box when focused:
    $('input.txtSearch').focus(function(){
        this.select();
    });

    $.getScript("/api/renderSkin?skin=%5B%5BRandomImage%5D%5D");
    startMenu();
    
    $('#ctaPayViewBill').click(function() {
        var theHref = $(this).attr('href');
        window.open(theHref, '','')
        return false;
    });
    
});