$(document).ready(function() {
    initCufon();
    initSlideshow();
    showHideTitleNote();
    $("#mailing_list input#email").defaultvalue("Enter email address...");
});

function initCufon() {
    Cufon.set('separate', 'none');
    Cufon.replace('#content h2.title');
    Cufon.replace('#top_news h3, #latest_video h3, #live_events h3, #your_cart h3, #shop_categories h3');
};

function initSlideshow() {
    var slideshow = $('#slideshow').tabs({ fx: { opacity: 'toggle' } });
    slideshow.tabs('rotate', 4500);
};

function showHideTitleNote() {
    $('table.history tr.note').hide();
    $('table.history td a').click(function() {
        var target = $(this).attr('href');
        var img_path = "/dpwrestling.co.uk/tpl/dpw/assets/images/";
        $(target).toggle();
        if ($(target).is(':visible')) {
            $(this).css('background-image', 'url('+img_path+'arrow-up.gif)');
        } else {
            $(this).css('background-image', 'url('+img_path+'arrow-down.gif)');
        }
        return false;
    });
};