jQuery(document).ready(function($){
	$('#homemid').animate({
		height : '150px'
	},650);
	$('#flyto img').animate({
			left : '300px'
		}, 950, function(){
			$(this).animate({
				left : '200px'
			},1200);
		}
	);
});

