$(document).ready(function(){
		       
	$('.more-btn').click(function(e){
	    e.preventDefault();
		if ($(this).attr('id') != 'overviewMore') {
			id = '.more-'+$(this).attr('id');
			$(id).slideToggle('slow');
		}else{
			$('.more-text-overview').slideToggle('slow');
		}
		if($(this).html() == 'more&gt;&gt;'){
			$(this).html('less&lt;&lt;');
		}else{
			$(this).html('more&gt;&gt;');
		}
	});
	$("#links a[title*='Coming Soon']").hover(
		function(){
			pos = $(this).position();
		    $('.linkHover')
				.css({'left':pos.left,'top':(pos.top-30),'visibility':'visible'})
				.animate({top:(pos.top-40)}, 200 )
				.end();
		},
		function(){
			$('.linkHover').css({'visibility':'hidden'});
		}
	);
	
});
