$(function(){
// div loadding

// navbar style


$(".anclass font").hover(
  function () {
    $(this).css({ color: "#fff", backgroundColor: "#000" });
  },
  function () {
    $(this).css({ color: "#000", backgroundColor: "#fff" });
  }
);


$(".navbar td").hover(
  function () {
    $(this).css("backgroundColor","#5a7191");
	$(this).addClass("navbar_td");
  },
  function () {
    $(this).css("backgroundColor","#5692d7");
	$(this).removeClass("navbar_td");
  }
);




$(".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 ********/
  }
);



$(".nclass2").hover(
  function () {
    $(this).css("backgroundColor","fff");
  },
  function () {
    $(this).css("background","ffff00");/* this url is ********/
  }
);









$(".nclass").hover(
  function () {
    $(this).css("backgroundColor","5b9ee8");
  },
  function () {
    $(this).css("background","497db7");/* this url is ********/
  }
);
$(".nclass2").hover(
  function () {
    $(this).css("backgroundColor","5a9ae0");
  },
  function () {
    $(this).css("background","5a9ae0");/* this url is ********/
  }
);



$("dd:not(:last)").hide();  
		$("dt a").click(function(){
			$("dd:visible").slideUp("slow");
			$(this).parent().next().slideDown("slow");
			return false;
		});





	});
