$(document).ready(function(){
						   
	$(".jQ_sectionlink a.link").css('opacity', 0.4);
	$(".jQ_sectionlink a.link span.title").css('opacity', 0.4);

	$(".jQ_sectionlink").hover(
		function () {
			var $a = $(this).children("a.link");
			var $span = $a.children("span.title");
			var $div = $(this).children("a.text");
			$a.animate({ 
				opacity: 1
			}, 600 );			
			$span.animate({ 
				marginTop: 0
			}, 300 );
			$div.animate({ 
				marginTop: -96
			}, 300 );
		},
		function () {
			var $a = $(this).children("a.link");
			var $span = $a.children("span.title");
			var $div = $(this).children("a.text");
			$a.animate({ 
				opacity: 0.4
			}, 600 );			
			$span.animate({ 
				marginTop: 96
			}, 300 );			
			$div.animate({ 
				marginTop: 0
			}, 300 );
		}
   );
	
});