$(document).ready(function(){
$(".current_tag").click(function(){if (
$("#tagz").is(":hidden")){
$("#tagz").slideDown("slow");}
else{$("#tagz").slideUp("slow");}
});
});
function closeForm(){}

$(function () {
$('.thumb img').hover(function() {
$(this).fadeTo("fast", 0.5);}, function() {
$(this).fadeTo("fast", 1);
});
});