/* Start the Scripts when DOM is ready */
$(document).ready(function() {
	$('.post-image').fadeTo('fast', 0.85);
	$('.post-image').hover(function() {
		$(this).fadeTo('fast', 1.0);
	}, function() {
		$(this).fadeTo('fast', 0.85);
	});
	
	/* Scroll to the Top 'Back to Top' Link */
	$('#backtotop').mouseover(function(){
		$.scrollTo( '#main', 800 );
	});
	
	/* Animate dzpal.ru Link */
	/*
	$('#mindspage').hover(function() {
		$(this).animate({
			fontSize: '13px'
		}, 400 );
	}, function() {
		$(this).animate({
			fontSize: '10px'
		}, 400 );
	});
	*/

});