$('document').ready(function(){

    $(".welcome .buttonHandy a").hover(function() {

        $(".welcome").addClass("welcomehandy");
    }, function(){
        $(".welcome").removeClass("welcomehandy");
    });

    $(".welcome .buttonPrepaid a").hover(function() {

        $(".welcome").addClass("welcomeprepaid");
    }, function(){
        $(".welcome").removeClass("welcomeprepaid");
    });



    $('.pv-button').hover(
    function(){
        $(this).addClass("ui-state-hover");
    },
    function(){
        $(this).removeClass("ui-state-hover");
    });

});