Instantiate FAQ Object on Page Load

// We want to fire our FAQ when the page is done loading
window.onload = function ()
{
	var faq = new FAQ('faq-list');
};