$(function(){
	var nowpage = $("#rightside h3").text();
	//$("#product li a:contains(about)").parents("li").children("span").show();
	$("#product li").mouseover(function(){
						var s = $(this); 
						s.children('.item').children('span').fadeIn(500);
						s.siblings().children('.item').children('span').fadeOut(500);
					});

	$("#tbl_product tr:first").css("backgroundColor","#E3BBBB")
	$("#tbl_product tr:gt(0)").mouseover(function(){
		$(this).css("backgroundColor","pink");
	}).mouseout(function(){
		$(this).css("backgroundColor","#F7E3E4");
	});
	
	$("#news_tab li:eq(0)").mouseover(function(){
		$(this).css("borderColor","#FF33CC");
		$(this).siblings().css("borderColor","green");
		$("#news_con_n").show();
		$("#news_con_n").siblings().hide();
	});
	$("#news_tab li:eq(1)").mouseover(function(){
		$(this).css("borderColor","#FF33CC");
		$(this).siblings().css("borderColor","green");
		$("#news_con_mn").show();
		$("#news_con_mn").siblings().hide();
	});
	$("#news_tab li:eq(2)").mouseover(function(){
		$(this).css("borderColor","#FF33CC");
		$(this).siblings().css("borderColor","green");
		$("#news_con_gn").show();
		$("#news_con_gn").siblings().hide();
	});
})
