window.addEvent('domready', function () {
	
	// Make cells clickable on the front pages
	$$('table.linkBoxes td').each(function (item) {
		var link = item.getElement('a');
		if (link) {
			item.addClass('link');
			item.addEvent('click', function () {
				location.href = link.get('href');
			});
		}
	});
	
	// Make cells clickable on the front pages
	$$('div.contentLink').each(function (item) {
		var link = item.getElement('a');
		if (link) {
			item.addClass('link');
			item.addEvent('click', function () {
				location.href = link.get('href');
			});
		}
	});

	// Make cells clickable on the front pages
	$$('div.shortContentLink').each(function (item) {
		var link = item.getElement('a');
		if (link) {
			item.addClass('link');
			item.addEvent('click', function () {
				location.href = link.get('href');
			});
		}
	});
	
});
