cat_name;
}
if(in_array("Blogmarks", $current_cats) && !in_array("Blogmarks", $previous_cats)) {
//if Blogmarks in current_cats but NOT in previous_cats then we're at the start
echo '
';
}
if(!in_array("Blogmarks", $current_cats) && in_array("Blogmarks", $previous_cats)) {
//if Blogmarks in current_cats but NOT in previous_cats then we're at the start
echo '
';
}
?>
';
}
?>