/*
 * Copyright(c) 2008-2009,Playerassist.com Inc. Some rights reserved.
 * Created July 07, 2009 5:58 pm
 */
$(document).ready(function(){

    // show quick buy gold pacakge form
    function quick_gold_form(productid, pacakge, price){
        $.ajax({
            url: "../add_pl_cart.php?productid=" + productid + "&pacakge=" + pacakge + "&price=" + price,
            type: 'GET',
            dataType: 'html',
            timeout: 20000,
            
            error: function(){
                //alert('Failed to connect to server');
            },
            success: function(msg){
                $.blockUI({
                    fadeIn: 0,
                    message: $('#login').html(msg)
                });
            }
        });
    }
    
    // add powerleveling package to cart
    $('.dis_list_sub img').each(function(){
        $(this).click(function(){
            price = $(this).parents().find('.price').html();
            package = $(this).parents().find('.package').html();     
            productid=$(this).attr('id').split('_')[1];   
            // show add to cart form
            quick_gold_form(productid, package, price);
        });
    });
});