<script type='text/javascript'>
simpleCart({
cartColumns: [{
view: 'image',
attr: 'thumb',
label: false
}, {
attr: "name",
label: false
}, {
attr: "price",
label: false,
view: 'currency'
}, {
view: "decrement",
label: false,
text: "-"
}, {
attr: "quantity",
label: false
}, {
view: "increment",
label: false,
text: "+"
}, {
attr: "total",
label: false,
view: 'currency'
}, {
view: "remove",
text: "Remove",
label: false
}],
checkout: {
type: "PayPal",
email: ""
}
});
</script>