


jQuery(document).ready(function(){

	jQuery('#frontpage-banner-wr').cycle({ fx:'fade', speed:2000, pause:0, sync:true });


	//expandable subject heirarchy
	jQuery("#sidebarLeft .courses-list-sub li.parent_tag, #sidebarLeft .courses-list-sub li.active_tag").children('ul').show();


	// Add a toggler span
	//$j( "#sidebarLeft .courses-list-sub .hasChildren > h2" ).append("<figure class=\"expander\"></figure>");
	jQuery("#sidebarLeft .courses-list-sub .hasChildren:has(ul)").append("<span class=\"expander ico-expand\"></span>");

	jQuery("#sidebarLeft .courses-list-sub .hasChildren .expander").bind("click", function expandoList() {
		jQuery(this).parent().children('ul').slideToggle("fast");
		return false; //stop normal href from working
	});


});    


