$(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" });
  }
);
$(".tc1 font").hover(
  function () {
    $(this).css({ color: "#fff", backgroundColor: "#FD0100" });
  },
  function () {
    $(this).css({ color: "#000", backgroundColor: "#fff" });
  }
);



$(".pro").hover(
  function () {
    $(this).addClass("cort_red");
  },
  function () {
    $(this).removeClass("cort_red");
  }
);

$(".anclass").hover(
  function () {
    $(this).css("background","url(image/anclassbg.png) no-repeat 1px -34px");
  },
  function () {
    $(this).css("background","url(image/anclassbg.png) no-repeat top center");/* this url is ********/
  }
);


$(".nclass").hover(
  function () {
    $(this).css("backgroundColor","ff8800");
  },
  function () {
    $(this).css("background","ffffff");/* this url is ********/
  }
);
$(".nclass2").hover(
  function () {
    $(this).css("backgroundColor","fff");
  },
  function () {
    $(this).css("background","ffff00");/* this url is ********/
  }
);
$(".thumbImage").hover(
  function () {
    $(this).css("border","2px solid #fda200");
  },
  function () {
    $(this).css("border","2px solid #fefed6");/* this url is ********/
  }
);




	});