/*======================================================================*\
|| #################################################################### ||
|| # JAKCMS 1.4                                                       # ||
|| # ---------------------------------------------------------------- # ||
|| # Copyright 2010 JAKCMS All Rights Reserved.                       # ||
|| # This file may not be redistributed in whole or significant part. # ||
|| # ---------------- JAKCMS IS NOT FREE SOFTWARE ----------------    # ||
|| # http://www.jakcms.com | http://www.jakcms.com/license-agreement/ # ||
|| #################################################################### ||
\*======================================================================*/

$(document).ready(function(){

	$("ul.topnav li ul li:has(ul)").find("a:first").append(" &raquo; ");
		
		$(".sidebarcat a").append("<span></span>");
			$(".sidebarcat li a").hover(function() {
				$(this).find("span").animate({opacity: "show", left: "20"}, "fast");
				var hoverText = $(this).attr("title");
			    $(this).find("span").text(hoverText);
			    this.t=this.title;this.title="";
			}, function() {
				$(this).find("span").animate({left: "0", opacity: "hide"}, "fast");
				this.title=this.t;
			});
			
		$(".forumcat a").append("<div></div>");
			$(".forumcat a").hover(function() {
				$(this).find("div").animate({opacity: "show", left: "20"}, "fast");
				var hoverText = $(this).attr("title");
			    $(this).find("div").text(hoverText);
			    this.t=this.title;this.title="";
			}, function() {
				$(this).find("div").animate({left: "0", opacity: "hide"}, "fast");
				this.title=this.t;
			});
});
