// JavaScript Document

jQuery(document).ready ( function () {		
	jQuery('#content .text')
		.mouseenter(function(){
			jQuery(this).children().stop().animate({marginTop:"0"}, {duration:500});
		})
		
		.mouseleave(function(){
			jQuery(this).children().stop().animate({marginTop:"190px"}, {duration:200});
		})			
})

