Behaviour.register({
	"div.recommendationDetail .popup a.more": {
		onclick: function(e) {
			var el = Event.element(e);

			window.open(el.href, "Information", "width=500,height=300,scrollbars=yes");
			
			Event.stop(e);
			return false;
		}
	},
	"#Popup a.close": {
		onclick: function(e) {
			var el = Event.element(e);

			window.close();
			
			Event.stop(e);
			return false;
		}
	},
	"div.faqs h5": {
		initialize: function() {
			this.style.cursor = "pointer";
		},
		onclick: function(e) {
			var el = Event.element(e);
			var ct = $$('div.content', el.parentNode)[0];
			var doShow = false;
			if (ct.style.display == 'none')
			{
				doShow = true;
			}
			$$('div.content', el.parentNode.parentNode).each(function(el){ Element.hide(el); });
			if (doShow)
			{
				Element.show(ct);
			}
		}
	},
	"div.faqs ul li .content": {
		initialize: function() {
			Element.hide(this);
		}
	}
	
});
