jQuery(document).ready(function($) {
$(function () {
	$('.fade').hover(function() {
		$(this).fadeTo("fast", 0.5);
	}, function() {
		$(this).fadeTo("fast", 1);
	});
});
$(function () {
	$('.post-image-sidebar').hover(function() {
		$(this).fadeTo("fast", 0.5);
	}, function() {
		$(this).fadeTo("fast", 1);
	});
});
$(function () {
        $('.dropdown').fadeTo("fast", 0.85);
});
$(function () {
	$('.page_item').hover(function() {
		$(this).fadeTo("fast", 0.9);
	}, function() {
		$(this).fadeTo(400, 1);
	});
});
});

