// JavaScript Document

function main()
{
	// Make links with 'rel="external"' open in new windows.
	if (typeof(hookExternalLinks) == 'function') hookExternalLinks();
	
	// show js elements for the dynamic form.
	if (typeof(initForm) == 'function') initForm();
	
	// set the 'selected' item in the all games dropdown
	if (typeof(setSelected) == 'function') setSelected();
	
	// initialise the scroller box on categaies page
	if (typeof(initScroller) == 'function') initScroller();
	
	// create broken game link on games page
	if (typeof(initBrokenGame) == 'function') initBrokenGame();
}

window.onload = main;
