function checkout()
{

    $("#radioPaypal").click(function(){
        $("#paypalText").css( "display", "block" );
        $("#transferText").css( "display", "none" );
    });

    $("#radioTransfer").click(function(){
        $("#paypalText").css( "display", "none" );
        $("#transferText").css( "display", "block" );
    });

    $("#Country_idCountry").change(function(){
        if( $(this).val() != 0 )
            $.post( url+"/shop/shipping.tax/get/country/"+$(this).val()+"/quantity/"+$("#quantity").html()+"/total/"+$("#subTotal").html(), {}, function(html)
            {
                var split = html.split( "<br />" );
                $("#tax").html( split[ 0 ] );
                $("#totalEuros").html( split[ 1 ] );
                $("#totalUK").html( split[ 2 ] );
                $("#totalUS").html( split[ 3 ] );
                $("#totalJP").html( split[ 4 ] );
            });
    });


    function inputOnClick()
    {
        var isInput = new Array;

        $(".articleQuantity").click(function(){
            if( isInput[ $(this).attr( "id" ) ] != true )
            {
                $(this).html( "<input type='text' value='"+$(this).html()+"' style='width: 25px' id='i"+$(this).attr( "id" )+"' />" );
                isInput[ $(this).attr( "id" ) ] = true;
            } else
            {
                $(this).html( $("#i"+$(this).attr( 'id' ) ).attr( "value" ) );
                isInput[ $(this).attr( "id" ) ] = false;
            }
        });
    }
}