//PullDown Menu
$(document).ready(
	function()
	{
		$(".menu-container").hover(
				function(){ $(".menu", this).slideDown("500"); }, 
				function() { } 
			);
		if (document.all) {
				$(".menu-container").hoverClass ("sfhover");
			}
	}

);
$.fn.hoverClass = function(c) {
			return this.each(function(){
				$(this).hover( 
					function() { $(this).addClass(c);  },
					function() { $(this).removeClass(c); }
				);
			});
		};

// copyright text and year	
/*$(document).ready(function() {
	$(".footer").html("©  % Etecnologia. All rights reserved<br />The .NET Framework and Visual Foxpro are registered marks of Microsoft. eTecnologia has not affiliation with Microsoft.",  new Date().getFullYear());
});
*/
$(document).ready(function() {
	$(".footer .copyright").text(" % ",  new Date().getFullYear());
});

//Faq list show hide
 $(document).ready(function() {
   $('#faq').find('dd').hide().end().find('dt').click(function() {
     $(this).next().slideToggle({ speed: "slow"});
   });
 });
 
//dt hover colour 
 $(document).ready(function() {
   $("#faq dt").hover(function() {
     $(this).addClass("dthover");
   },function(){
     $(this).removeClass("dthover");
   });
 });
