$(function(){
 
    //$('a.ro').mbRollover();

    /*
    if ($.fn.prettyPhoto) {
        $("a[rel^='lightbox']").prettyPhoto({
            animationSpeed: 'slow',
            padding: 40,
            opacity: 0.85,
            showTitle: false,
            allowresize: true,
            counter_separator_label: '/',
            theme: 'light_rounded'
        });
    }
    */
    
    $.ajax({
        type: "POST",
        url: "/manager/include/ajax_call.php",
        data: "a_func=checkCart&a_params=true",
        success: function (data) {
            var cart = jQuery.parseJSON(data);
            if(cart.numitems!=1)
            	$("#cartNumItems").html(cart.numitems+" items");
            else
            	$("#cartNumItems").html(cart.numitems+" item");
        }
    });
        
    // ajax check login
    $.ajax({
        type: "POST",
        url: "/manager/include/ajax_call.php",
        data: "a_func=checkifloggedin&a_params=true",
        success: function (data) {
            var login = jQuery.parseJSON(data);
            //alert("loggedin=" + login.loggedin + "\nfirstname=" + login.fname);
            if(login.loggedin)
            	$("#LoggedInMessage").show();
            else
            	$("#LoggedOutMessage").show();
        }
    });
  
});
