$(function(){
    
    
        var back = '<input type="button" class="prev" value="Back" />';
        var next = '<input type="button" class="next right" value="Continue" />';
        var submit = '<input class="next" type="submit" value="I Accept" name="submit" />';
    $("li.page_item").corner('top');

    if(window.location.href.match('connect')){
    $(".page:not(:first-child) .nav").append('<div style="float: left;">'+back+'</div>');
    $(".page:not(:last-child) .nav").append('<div style="float: right;">'+ next +'</div>');
    $(".page:last-child .nav").append('<div style="float: right;">'+ submit +'</div>');
//    $(".page:not(:first-child):not(:last-child)").append('<table width="450" align="center"><tr><td>'+back+'</td><td align="right">'+ next +'</td></tr></table>');
    }
//    $(".btn").each(function(){
        
//        $(this).replaceWith('<table id="btn-tbl" cellpadding="0" cellspacing="0"><tr><td><img src="../wp-content/themes/sg911/img/button1.jpg" alt="" /></td><td class="btn"><a class="btn-link" href="'+$(this).attr('href')+'">'+$(this).text()+'</a></td><td><img src="../wp-content/themes/sg911/img/button2.jpg" alt="" /></td></tr></table>');
//    });

    $("span.next").each(function(){
        $(this).replaceWith('<table class="next" cellpadding="0" cellspacing="0"><tr><td><img src="../wp-content/themes/sg911/img/btn1.jpg" alt="" /></td><td class="btn-text">'+$(this).text()+'</td><td><img src="../wp-content/themes/sg911/img/btn3.jpg" alt="" /></td></tr></table>');
    });
 
    $("span.prev").each(function(){
        $(this).replaceWith('<table class="prev" cellpadding="0" cellspacing="0"><tr><td><img src="../wp-content/themes/sg911/img/btn1.jpg" alt="" /></td><td class="btn-text">'+$(this).text()+'</td><td><img src="../wp-content/themes/sg911/img/btn3.jpg" alt="" /></td></tr></table>');
    });

});
