// JavaScript Document
$(function (){
	var time=300;
	var pic=$("#pics .pic");
	pic.hover(
		function(){
			$(this).children(".pTxt").animate( { top: '37px' } , time )
		},
		function(){
			$(this).children(".pTxt").animate( { top: '114px' } , time )
		}
	);
});
