// JavaScript Document

/**
 * This script has the following dependancies:
 * 		jQuery 1.4.2 or later
 * 		jQuery UI library 1.7.2 (as included with theme)
 * This script is to run different things on the site. So far, it only runs 
 * the accordian tabs on the sidebar, so doesn't do much!
 */

jQuery(document).ready(function($) {

	//Accordian-style tabs
	$("#accordion").accordion({
		autoHeight: false,
		navigation: true
	});
});
