TopUp.images_path = "assets/js/jquery/topup/images/top_up/";
TopUp.players_path = "assets/js/jquery/topup/players/";

$(document).ready(function() {


    $('#debug').width(800).accordion();

    $('.slideshow').cycle({
        fx:    'fade',
        speed:  400,
        timeout: 6500,
        next:   '.slideshow',
        pause:   1
    });

    $(".menuBTN").hover(
        function () {
            $(this).css({
                'background-position':'0px 0px'
            });
        },
        function () {
            $(this).css({
                'background-position':'0px -1421px'
            });
        });

    $('ul.gallery a').hover(
        function () {
            $(this).addClass('op72');
        },
        function () {
            $(this).removeClass('op72');
        }
        );

    $("form").validate();

    /* $('h1').addClass('ui-widget-header ui-corner-all'); */
    $('h4').addClass('ui-widget-header ui-corner-all');
    $('fieldset').addClass('ui-widget ui-widget-content ui-corner-all');
    $('form .button').button();

});