$('a#topLink').click(function(){
	$('html,body').animate({scrollTop:0}, 'slow');
});


$(document).ready(function(){
	$('article.halfWidth:odd').addClass('end');
	$('ul.twoCol li:odd').addClass('end');
});

$('#main article.halfWidth').hover(
function(){
	$(this).children('h2').stop();
	$(this).children('h2').animate({"bottom": "0px"}, "fast");
},
function(){
	$(this).children('h2').stop();
	$(this).children('h2').animate({"bottom": "-30%"}, "fast");

});
