$(document).ready(function() {
						
		$(".button1").mouseover(function() {	
				$(this).animate({"color":"#fff"},190);
				$(this).siblings(".hovers").animate({"top":"-23px", "backgroundColor" : "#a1b8e2"},100, function() {
						$(this).animate({"top":"-18px",},90)
						});
				});
		
		$(".button1").mouseout(function() {
				$(this).animate({"color":"#202942"},100);
				$(this).siblings(".hovers").animate({ "backgroundColor" : "#fff"},100);
				$(this).siblings(".hovers").animate({"top":"0px"},0);
				});
		
		});
