﻿$(document).ready(function () {
    $("#headMenu td div table tr td").filter(".bgcolor03").mouseover(
	function () {
	    $(this).removeClass("bgcolor03");
	    $(this).addClass("bgcolor05");
	})
	.mouseout(function () {
	    $(this).removeClass("bgcolor05");
	    $(this).addClass("bgcolor03");
	});
});
