/*	gliding captions for jQuery
/
/	Author:	Sven Balzer
/	eMail:	sven[at]pixel-in-motion[dot]de
/	Date:	2009-05-08
/
/	to switch directions up/down just place a "-" in front of the top attribute
*/

$('#toparticle').ready(function(){
	$('#toparticle').hover(
	function(){
		$("#caption").animate({bottom:'0px'},{queue:false,duration:160});
	}, function(){
		$("#caption").animate({bottom:'-50px'},{queue:false,duration:160});
	});
});