/*
 * Adds clickable links to the order steps
 */
window.addEvent('domready', function(){
	$$('#container .column h2 a').each(function(el){
		el.getParent('.column').addEvents({
			'mouseenter': function(){
				this.addClass('hover');
			},
			'mouseleave': function(){
				this.removeClass('hover');
			},
			'click': function(){
				window.location = el.get('href');
			}
		});
	});
});
