$(document).ready(function() {
   $(".tabnav a").click(function() {
   	var cat = $(this).attr("rel");
		$(this).parents('ul').find('a').removeClass("active");   	
   	$(this).parents('ul').next('.links').find('ul').remove();
   	$(this).parents('ul').next('.links').find('.ads').remove();
   	$(this).parents('ul').next('.links').slideUp("slow");
   	$(this).parents('ul').next('.links').prepend('<p id="loading" style="text-align: center; margin: 15px; height: 30px;"><img src="js/images/loading.gif" /></p>');
   	$(this).parents('ul').next('.links').slideDown("slow").load('cats.php?cat=' + cat);
   	$(this).parents('ul').next('.links').prepend('<p id="loading" style="text-align: center; margin: 15px; height: 30px;"><img src="js/images/loading.gif" /></p>');
   	$(this).addClass("active");
   	$('p#loading').hide();
	return false;
   });
});


