$(function () {
	$("#contentWrap #right #c388 li").mouseover(function() {
		$(this).addClass("hover");
	}).mouseout(function() {
		$(this).removeClass("hover");
	}).click(function() {
		var link = $(this).find("a").attr("href");
		parent.location=link;
	});
});
