$(function () {
	$('.galleryitem img').hover(function() {
		$(this).fadeTo("fast", 0.7);
	}, function() {
		$(this).fadeTo("fast", 1);
	});
});
$(function () {
	$('#sidebar .cat_posts img.thumbnail').hover(function() {
		$(this).fadeTo("fast", 0.7);
	}, function() {
		$(this).fadeTo("fast", 1);
	});
});

$(function () {
	$('#juicy').hover(function() {
	  $('#juicy').stop().animate({ opacity: 1, width: 300 }, 300 );
	}, function() {
	  $('#juicy').stop().animate({ opacity: 0.5, width: 30 }, 300 );
	});
});
