jQuery(function () {
	jQuery('.galleryitem img').hover(function() {
		jQuery(this).fadeTo("fast", 0.7);
	}, function() {
		jQuery(this).fadeTo("fast", 1);
	});
});
jQuery(function () {
	jQuery('#sidebar .cat_posts img.thumbnail').hover(function() {
		jQuery(this).fadeTo("fast", 0.7);
	}, function() {
		jQuery(this).fadeTo("fast", 1);
	});
});
