

$(document).ready(function() {

	$(".rivetDir thead th").prepend('<img src="../pics/rivetDirMinus.gif" width="16" height="16" alt="hide" title="hide">');

	$(".rivetDir thead th img").toggle(function(){
			$(this).attr("src", '../pics/rivetDirPlus.gif');
			$(this).parents("table").eq(0).find("tbody").hide();
		},function(){
			$(this).attr("src", '../pics/rivetDirMinus.gif');
			$(this).parents("table").eq(0).find("tbody").show();
		});

});
