function initCms(){
				clickEvent = false;
				$(".cms-link").hover(function(){ $(this).css('fontWeight','bold');});
				$(".cms-link").mouseout(function(){
					$(this).css('fontWeight','');
				});
				
				$(".CMS-table-top").hover(function(e) {
				//$(document).find(".CMS-table-top").find("td:last").css('display','none');
				//$(document).find(".CMS-table-top").find(".redBorder").css('display','none');
				
				//$('body').find("#link").css('display','none');
				if($.browser.msie){
					$(this).find(".redBorder").width(($(this).width()));
					$(this).find(".redBorder").height($(this).height()+0);
				}else{
					$(this).find(".redBorder").width(($(this).width()));
					$(this).find("#link").width(($(this).width()));
					$(this).find(".redBorder").height($(this).height());
				}
				var offset = $(this).offset();
				$(this).find(".redBorder").css('top',offset.top-6);
				$(this).find(".redBorder").css('left',offset.left-6);
				$(this).find("#link").width(($(this).width()));
				$(this).find("#link").css('top',offset.top+$(this).find(".redBorder").height());
				$(this).find("#link").css('left',offset.left-6);
				if($.browser.msie){	
					$(this).find("#link").width(($(this).width()));
				}
				//var $link = $(this).find("td:first").find("a").attr('href');
				//$(this).find("td:first").find("a").removeAttr('href');
				$(this).find(".redBorder").css('cursor','pointer');
				$(this).find(".redBorder").css('display','');
				$(this).find("#link").css('display','');
				
				//$(this).find("td:last").show();
				$(this).click( function(){
					clickEvent = true;
					$(document).find(".CMS-table-top").find(".redBorder").css('display','none');
					$('body').find("#link").css('display','none');
					$(this).find(".redBorder").css('display','');
					$(this).find("#link").css('display','');
				});
			  },
			  function(e){
			  	if(!clickEvent){
					//$(this).find("td:last").css('display','none');
					$(this).find(".redBorder").css('display','none');
					$(this).find("#link").css('display','none');
				}
				clickEvent = false;
			  });	
				//alert('cms initialized');
}