$(document).ready(function(){
	$(".but1").mouseover(function(){this.className="but1_active";});
	$(".but1").mouseout(function(){this.className="but1";});

	$(".but2").mouseover(function(){this.className="but2_active";});
	$(".but2").mouseout(function(){this.className="but2";});

	$(".but3").mouseover(function(){this.className="but3_active";});
	$(".but3").mouseout(function(){this.className="but3";});

	$(".but4").mouseover(function(){this.className="but4_active";});
	$(".but4").mouseout(function(){this.className="but4";});

	$(".but5").mouseover(function(){this.className="but5_active";});
	$(".but5").mouseout(function(){this.className="but5";});

	$(".but6").mouseover(function(){this.className="but6_active";});
	$(".but6").mouseout(function(){this.className="but6";});

	$(".but7").mouseover(function(){this.className="but7_active";});
	$(".but7").mouseout(function(){this.className="but7";});

	$(".but8").mouseover(function(){this.className="but8_active";});
	$(".but8").mouseout(function(){this.className="but8";});
});
