function insertCalenderButtons()
{
	var productpage = $$('td.ProductInfo_TD')[0];
	if(productpage)
	{
		var con = $('ContentContainer_DIV');
		if(con)
		{
			var elm = new Element('div',{'class':'extrabuttons'});
			elm.insert(new Element('a', {href:'cms-11.html','class': 'tilkalender'}).update('Til bookingskalender'));
			elm.insert(new Element('a', {href:'showbasket.html', 'class': 'tilkurv'}).update('Til kurv'));
			con.insert({'top':elm});
		}
	}
	
	// * call standard init
	DetectBrowser_init();
}

// * insert on load
Event.observe( window, 'load', insertCalenderButtons)

// * fix to prevent the standard DetectBrowser method from being called
var DetectBrowser_init = DetectBrowser;
DetectBrowser = function(){};

