$(document).ready(function() {

if($("#quotebox-bg").length == 1 || $("#quotebox-bg").length > 0) {
	//We're on the homepage, so load the first panel in the accordion. Otherwise overload the value to have them all closed
	initIndex = '0';
}
else {
	initIndex = '10';
}


$("#acc-button").tabs("#acc-button div.panel", { 
    tabs: 'div a.acc-link',
	effect: 'fade',
    initialIndex : initIndex
});

});