$(function(){
$(".item").hover(function(){
	$(this).css("background","url(image/navbar_bg.jpg) no-repeat top center");
	$(this).find("div").show();
	$(this).find("a(:eq(0))").css("color","#000").end();
},function(){
	$(this).css("background","none");
	$("div",this).hide();
	$(this).find("a(:eq(0))").css("color","#fff").end();
});
$(".sty a").hover(
  function () {
    $(this).css({ color: "#fff", backgroundColor: "#fd0100" });
  },
  function () {
    $(this).css({ color: "#000", backgroundColor: "#fff" });
  }
);
$(".tc_title a").hover(
  function () {
    $(this).css({ color: "#fff", backgroundColor: "#fd0100" });
  },
  function () {
    $(this).css({ color: "#000", backgroundColor: "#fff" });
  }
);
$(".tc_title_s a").hover(
  function () {
    $(this).css({ color: "#fff", backgroundColor: "#fd0100" });
  },
  function () {
    $(this).css({ color: "#000", backgroundColor: "#fff" });
  }
);
$(".pitem").hover(
  function () {
    $(this).css("backgroundColor","#ffcc00"); 
	
  },
  function () {
    $(this).css("backgroundColor","transparent"); 
	
  }
);
$(".sitem").hover(function(){
	$(this).find("div").show();
	
},function(){
	$("div",this).hide();
		
});
$(".tc font").hover(
  function () {
    $(this).css({ color: "#fff", backgroundColor: "#FD0100" });
  },
  function () {
    $(this).css({ color: "#000", backgroundColor: "#ffcc00" });
  }
);	
	
	
	
	
	
	});
