$(function () {
	$(".play").fadeTo("fast", 0);
	$('.galleryitem .play').hover(function() {
		$(this).fadeTo("fast", 0.5);
	}, function() {
		$(this).fadeTo("fast", 0);
	});
});
$(function () {
	$('#sidebar .cat_posts img.thumbnail').hover(function() {
		$(this).fadeTo("fast", 0.5);
	}, function() {
		$(this).fadeTo("fast", 1);
	});
});
