// JavaScript Document
$(document).ready(function(){
	$('.topicsBox').hide();
	$('.topicsBox:first').show();
	$('.tabList li a').click( function() {
		var index = $(".tabList li a").index(this);
		$(".topicsBox").hide().eq(index).show();
		$(".tabList li a img").rollOver().trigger("mouseleave").eq(index).trigger("mouseenter").unbind("mouseleave").unbind("mouseenter");
		return false;
	} )
	
});

