jQuery(function(){

	jQuery(".thumbnail-div .info-button").click(function(){
	  jQuery(this).prev(".info").slideToggle("slow");
		jQuery(this).toggleClass("active"); return false;
	});


	jQuery(".bar .rating").click(function(){
	  jQuery(this).prev(".ratingbox").slideToggle("slow");
		jQuery(this).toggleClass("active"); return false;
	});

	jQuery(".ratingbox .delete").click(function(){
	  jQuery(this).parents(".ratingbox").animate({ opacity: "hide" }, "slow");
	});

	jQuery(".lightbox .lightboxdelete").click(function(){
	  jQuery(this).parents(".lightbox").animate({ opacity: "hide" }, "slow");
	});

	jQuery(".sidebar-small-white-box-set a").hover(function() {
		jQuery(this).next("em").animate({opacity: "show", top: "-275"}, "slow");
	}, function() {
		jQuery(this).next("em").animate({opacity: "hide", top: "-260"}, "fast");
	});

});