// JavaScript Document
// 10.31.09 - gbellucci
$(document).ready( function() {
	$("a.jhover").hover(
		function() {
			$(this).addClass("ui-state-hover");
		},
		function() {
			$(this).removeClass("ui-state-hover");
		}
	);
});
