// Place all jQuery code in the following closure
$(document).ready(function() {
$('#nav-top').append('<div id="cart-info"></div>');
    // Load the shopping cart html
    $('#cart-info').load('/ssc/plain/checkout/index.do #cart-info ul', {
        'dispatch': 'shoppingCartContentLink'
    }).click(function(){
        window.location="http://www.projectprogress.org/ssc/plain/shoppingCart/index.do";
    });


});

function PopUp(href, width, height){
    window.open(href, '_blank', 'width='+width+',height='+height+',resizable=1,location=no,menubar=no,status=no,toolbar=no');
}
