// JavaScript Document
	
      $(function(){ 
      <!--Search Hover Functionality-->
	  		$("#sitesearch").hover (
				  function () {
					$("#sitesearch input.sys_searchbox").toggleClass("sys_highlight");
				  },
				  function () {
					$("#sitesearch input.sys_searchbox").toggleClass("sys_highlight");
				  }
  			  );
	<!-- End -->
	<!-- Feature Buttons with Hover Effect -->
	 	 	 $(".sys_feature-button").addClass("sys_jquery-button");
			 $("div.sys_feature-buttons-control div.sys_feature-button").hover(
				  function () {
					$(this).addClass("sys_feature-button-hover");
					var mylink = $(this).find("a").attr("href");
				    <!--$(this).find("p").attr("onClick", mylink);-->
					$(this).find("p").wrapInner("<a></a>");
					$(this).find("p a").attr("class", "sys_feature-text-link");
					$(this).find("p a").attr("href", mylink);
				  }, 
				  function () {
					$(this).removeClass("sys_feature-button-hover"); 
					var textStr = $(this).find("p").text();
					$(this).find("p").text(textStr);
				  }
  			  );
	<!-- End -->
	<!-- Tab Control -->  
			  $("div.sys_simple-tab-control .sys_tab-control-content").hide();
			  $("div.sys_simple-tab-control #tabcontent1").show();
			   $("div.sys_simple-tab-control .sys_tabs li").click(
				  function () {
				    var tabhref = $(this).find("a").attr("href");
					var tabhref = tabhref.replace("#", "");
					$(this).addClass("sys_selected");
					$(this).siblings("li").removeClass("sys_selected");
					$("#" + tabhref).show();
					
					$("#" + tabhref).siblings("div.sys_tab-control-content").hide();
					<!--alert(tabhref);-->
				  }
  			  ); 
	<!-- End -->
	<!-- FAQs -->
			<!--$("div.sys_faqitem div.sys_answer").hide();-->
			  <!--$("div.sys_faqitem div.sys_question").click(-->
				  <!--function () {-->
				    <!--$(this).siblings("div.sys_answer").toggle();-->
				  <!--}-->
  			  <!--);-->
  	<!-- End -->
			  
	 });

