// JavaScript Document
$(document).ready( function() {						   
	$("#butt1").mouseover(function(){ $("#butt1").animate({"top": "-=8px"}, "fast"); }); $("#butt1").mouseout(function(){ $("#butt1").animate({"top": "+=8px"}, "fast"); });
	$("#butt2").mouseover(function(){ $("#butt2").animate({"top": "-=8px"}, "fast"); }); $("#butt2").mouseout(function(){ $("#butt2").animate({"top": "+=8px"}, "fast"); });
	$("#butt3").mouseover(function(){ $("#butt3").animate({"top": "-=8px"}, "fast"); }); $("#butt3").mouseout(function(){ $("#butt3").animate({"top": "+=8px"}, "fast"); });
	$("#butt4").mouseover(function(){ $("#butt4").animate({"top": "-=8px"}, "fast"); }); $("#butt4").mouseout(function(){ $("#butt4").animate({"top": "+=8px"}, "fast"); });
	$("#butt5").mouseover(function(){ $("#butt5").animate({"top": "-=8px"}, "fast"); }); $("#butt5").mouseout(function(){ $("#butt5").animate({"top": "+=8px"}, "fast"); });
	$("#butt6").mouseover(function(){ $("#butt6").animate({"top": "-=8px"}, "fast"); }); $("#butt6").mouseout(function(){ $("#butt6").animate({"top": "+=8px"}, "fast"); });
});	
