
$(document).ready(function() {

    // add tracking on buy now button from page
    $("#paypalbtn").click(function () {
        var pageTracker = _gat._getTracker("UA-6320442-2");
        pageTracker._trackPageview("/order_page");
    });
    
    // add tracking on buy now button from sidebar
    $("#paypalbtn_side").click(function () {
        var pageTracker = _gat._getTracker("UA-6320442-2");
        pageTracker._trackPageview("/order_side");
    });
    
    // add tracking on clickandchat
    $("div.header_right a").click(function () {
        var pageTracker = _gat._getTracker("UA-6320442-2");
        pageTracker._trackPageview("/clickandchat");
    });
});


/*
$(function(){
    // Handles promotion discounts on buy now
    $('#pp_quantity').change(function () {
        // get quantity value
        var quantity = $('#pp_quantity').val();
        
        // calculate total
        if (quantity % 2) {
            // calculate how many at full price and how many at reduced price
            var fullprice = ((quantity - 1)/2) + 1;
            var reduced = quantity - fullprice;
        } else {
            var fullprice = quantity/2;
            var reduced = quantity/2;
        }
        
        var total = (fullprice * 227) + (reduced * 113.5);
        // update total
        total = total.toFixed(2);
        $('#pp_total').html('Total: $'+ total + ' USD');
        $('#pp_amount').val(total);
        
        // update item name to include number of items
        $('#pp_item_name').val('PosiSprink ('+ quantity +')');
        
        
    });
});
*/

