// JavaScript Document

$(document).ready(function() {
	/* animation for buttons, scroll up and fade away */
	$('#blockContainer .blocks').hover(
	function() {
		var $box2 = $('img', this);
		var $box4 = $('.blockMenu', this);
					
			$box2.slideUp(500);
			$box2.fadeOut(1000);
			$box4.delay(300);
			$box4.fadeIn(1000);
			
	},
	function() {
		var $box2 = $('img', this);
		var $box4 = $('.blockMenu', this);
					
			$box4.fadeOut(500);
			$box2.delay(600);
			$box2.fadeIn(1000);
			$box2.slideDown(500);
	});
});

