﻿$(document).ready(function() {
	$('table.button').mouseover(function() {
		$(this).removeClass("button");
		$(this).addClass("buttonOver");
	});

	$('table.button').mouseout(function() {
		$(this).removeClass("buttonOver");
		$(this).addClass("button");
	});

	$('table.buttonSearch').mouseover(function() {
		$(this).removeClass("buttonSearch");
		$(this).addClass("buttonSearchOver");
	});

	$('table.buttonSearch').mouseout(function() {
		$(this).removeClass("buttonSearchOver");
		$(this).addClass("buttonSearch");
	});
});
