
$(function() {
    $ = jQuery;
    $.ajaxSetup({ timeout: 10000 });

    var culture = '';
    try {
        if ($('meta[name=hema.culture]') != null) {
            culture = $('meta[name=hema.culture]').attr("content")
        }
    }
    catch (err)
	{ }
	
	if ($("#h-baskets").length > 0)
	{
       $("#h-baskets").basket({ priority: 3, shop: "boeken", title: "boeken winkelmandje", css: "h-basket boeken", basketServiceUrl: "//boeken.hema.nl/basketservice?callback=?&hemaSessionId=" + $.cookie("HemaSession") + "&culture=" + $('meta[name=hema.culture]').attr("content"), homeCaption: "boek", homeUrl: "http://boeken.hema.nl/", orderUrl: "http://boeken.hema.nl/cart" });		
	}

});
