$(document).ready(function(e){
	$('#sbanner div.services').hover(
		function(e){
			$(this).children('div').animate({'marginTop':'0px'}, 500, jQuery.easing.easeOutQuad);
		},
		function(e){
			$(this).children().animate({
				'marginTop': '200px'
			},500, jQuery.easing.easeInQuad);
		}
	);//.children().css({'margin-top':'200px'});
});