/* 
Homepage JS
Rui Zhang
2008-06
*/

$(document).ready(function() {
	$('#section_teaser div.column').hover(function() { // Hover effect
		$(this).find("div").stop().animate({top: 48, height: 87}, "fast");
	}, function () {
		$(this).find("div").stop().animate({top: 100, height: 35}, "fast");
	}).each(function () { // Make whole thing a 'link'
		$(this).css({cursor: "pointer"}).click(function () {
			document.location.href = $(this).find("a").attr("href");
		});
	});
});