 $(document).ready(function() {
 
 	$("#categories-overview li a").click(function(event) {
 		event.preventDefault();
 		$category = $(this).attr("rel");
 		
		$("#categories-overview li a").removeClass('active');
		$(this).addClass('active');
		
 		if(($category == "all") || ($category == "")) {
 			$("#categories-result li").show("fast");
 		}
 		else {
	 		$("#categories-result li").hide();
	 		$("#categories-result li."+$category+"").fadeIn("fast");
	 	}
 	
 	});
	
	$("#categories-result li a").each(function () {
		if ($(this).attr('rel') == 'external') {
			$(this).attr('target', '_blank');
		}
	});

	$("#categories-popular li a").each(function () {
		if ($(this).attr('rel') == 'external') {
			$(this).attr('target', '_blank');
		}
	});
	
	$("#categories-overview li.first a").addClass('active');
	
 });
