$(document).ready(function(){
		$(".selected").animate({
				top: "0px"
		}, 1000);
		
		$(".unselected").click(function() {
				$(this).animate({
						top: "-22px"
				}, 1000);
		})
		$(".unselected").mouseover(function() {
				$(this).animate({
						top: "5px"
				}, 200);
		});
		$(".unselected").mouseout(function() {
				$(this).animate({
						top: "0px"
				}, 200);
		});
});