﻿$(function(){
      $("li[rel='Nav']").hover(
	 function () {
			$(this).children("div").show('fast');
			$(this).children("a").addClass("tmenuOn");
			$(this).children("a").css("color","#0d75b0");
	  },
	  function () {
			$(this).children("div").hide('fast');
			$(this).children("a").removeClass("tmenuOn");
			$(this).children("a").css("color","");
	  });


    $("#KinSlideshow").KinSlideshow({
		isHasTitleBar:false,
		moveStyle:"left",
		mouseEvent:"mouseover",
		btn:{btn_bgColor:"#FFFFFF",btn_bgHoverColor:"#097fc8",btn_fontColor:"#097fc8",btn_fontHoverColor:"#FFFFFF",btn_borderColor:"#097fc8",btn_borderHoverColor:"#097fc8",btn_borderWidth:1}
	});
	
});
