function hide_sheep_one() {
	$("#sheep-1").animate({top: '+=40'}, 300);
}

function show_sheep_one() {
	$("#sheep-1").animate({top: '-=40'}, 5000);
}

