//$(document).ready(function() {
//    $("#add_basket").click(function(){
//    	$.post('/basket/add', {'quantity' : 1, 'product_attribute' : 1})
//    });
//})

jQuery(function() {
    jQuery("#search_keyword").suggest("/ajax-search/?type=keyword");   
})


jQuery(function() {
jQuery("#suggest").suggest("/ajax-search/",{
onSelect: function() {alert("You selected: " + this.value)}});
});


function checkout_reload()
{
	location.reload(true);
}