jQuery(document).ready(function(){
	// Onload: Set logo opacity to 40%
	jQuery('.jtab').children('a').children('img').animate({ 
		opacity: 0.4
	}, 0 );
	// Remove CSS hover margin for JS version
	jQuery('.jtab a').css('margin-top',0);
	
	// hover/mouse over
	jQuery('.jtab').hover(function(){
		jQuery(this).stop().animate({ 
			top: '0px' // Move down
		}, 100, function(){
			jQuery(this).children('a').children('img').animate({ 
				opacity: 1.0 // Set opacity to 100%
			}, 200);}
		);
	// hover/mouse out
	}, function(){
		jQuery(this).stop().animate({ 
			top: '-10px' // Move up
		}, 100, function(){
			jQuery(this).children('a').children('img').animate({ 
				opacity: 0.4 // Set opacity back to 40%
			}, 100);}
		);
	});
});
