/*	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});
	});
});

$('.video_thumbnails, .video_thumbnails_big, .video_thumbnails_middle').ready(function(){ 
    $('.video_thumbnails, .video_thumbnails_big, .video_thumbnails_middle').hover( 
    function(){ 
         $(this).children(".caption").animate({bottom:'0px'},{queue:false,duration:160}); 
    }, function(){ 
         $(this).children(".caption").animate({bottom:'-57px'},{queue:false,duration:160}); 
    }); 
});

$('.detailview_cat').ready(function(){ 
    $('.detailview_cat').hover( 
    function(){ 
         $(this).children(".caption").animate({bottom:'0px'},{queue:false,duration:160}); 
    }, function(){ 
         $(this).children(".caption").animate({bottom:'-57px'},{queue:false,duration:160}); 
    }); 
});


