

$(document).ready(function(){
	
	$("#idx_topcis_main ul li").mouseover(function(event){
		var linkObj = $(this).children().children('a');
		if( linkObj.length ){
			$(this).css("background", "#f4f5f5 url(/common/images/l_gray_01.gif) left top repeat-x");
			$(this).css("cursor", "pointer");
			$(this).children().children('a').css("text-decoration", "none");
		}
	})
	$("#idx_topcis_main ul li").mouseout(function(event){
		var linkObj = $(this).children().children('a');
		if( linkObj.length ){
			$(this).css("background", "#ffffff url(/common/images/l_gray_01.gif) left top repeat-x");
			$(this).css("cursor", "auto");
			$(this).children().children('a').css("text-decoration", "underline");
		}
	})
	$("#idx_topcis_main ul li").click(function(event){
		var linkObj = $(this).children().children('a');
		if( linkObj.length ){
			if( $(linkObj[0]).attr('target') == '_blank' ){
				window.open($(linkObj[0]).attr('href'), 'topicswin');
			} else {
				location.href = $(linkObj[0]).attr('href');
			}
		}
		return false;
	})
	
});



