$(function(){
	
	// slide-down images on homepage
	$('#top_page #main_contents .borderlink').hover(function(){
		$(this).find('img').animate({top:'80px'},{queue:false,duration:800});
	}, function(){
		$(this).find('img').animate({top:'0px'},{queue:false,duration:800});
	});
});