(function($) {
	$(document).ready(function() {

		$("#tmenu a").hover(function() {
			$(this).addClass("hover");
		}, function () {
			$(this).removeClass("hover");
		});

	});
})(jQuery); 

