$(document).ready(function() {
	// scroll to top 
	$('.topLink').click(function() {
		$.scrollTo( '#top', {duration: 500});
	});
	
	$('a').focus(function() {
		$(this).blur();
	});
	
	$("a.project_desc_more_link").click(function(){
		$(".project_desc_more").animate({
			"height": "toggle", "opacity": "toggle"
			},  { duration: 125 });
	});	
	
}); 

