$(document).ready(function () {
		// This is complicated so that the same script can work on any page,
		// with no modifications.  You can even add/remove/reorder tabs.
		// All that you need is:
		// 1. tab- and taba- files in the style folder (the rest of the filename
		//    after the dash does not matter)
		// 2. the a tag with a tab- class in the tabs list, just like any other.
		function isActive () {
			return $(this).hasClass('active');
		}
		$('#tabs li[class^="tab-"] a').not(isActive).hover(function (e) {
			$(this).toggleClass('active');
		});
});

