function copyBilling() {
    $('#compadd1').val($('#add1').val());
    $('#compadd2').val($('#add2').val());
    $('#compadd3').val($('#add3').val());
    $('#compcity').val($('#city').val());
    $('#comppostcode').val($('#postcode').val());
    $('#compcountry').val($('#country').val());
}
$(document).ready(function() {
    if($('#twitterDiv').length > 0) {
        if(statuses.length > 0) {
            
            currentStatus = 0;
            rotateStatus();
        }
        
    }
});
var currentStatus = 0;
function rotateStatus() {
    loadStatus(currentStatus);
    t = setTimeout('rotateStatus()', 10000);
    currentStatus++;
    if(currentStatus == statuses.length) currentStatus = 0;
}

function loadStatus(id) {
    $('#twitterStatus, #twitterDate').fadeOut(500,function() {
        $('#twitterStatus').html(statuses[id].text);
        $('#twitterDate').html(statuses[id].date);
        $('#twitterStatus, #twitterDate').fadeIn(500);
    });
}