// JavaScript Document

jQuery(function(){
	if ($.browser.msie) {
		jQuery('#navigation').superfish({ 
			animation: {height:'show'}, 
			speed: 'normal',
			hoverClass: 'hover',
			disableHI:false,
			autoArrows:false,
			dropShadows:false
		}); 
	} else {
		jQuery('#navigation').superfish({ 
			animation: {opacity:'show'}, 
			speed: 'normal',
			hoverClass: 'hover',
			disableHI:false,
			autoArrows:false,
			dropShadows:false
		}); 
	}
});

$(document).ready(function(){
	$('#name').clearingInput();
	$('#email').clearingInput();
	$('#message').clearingInput();
	// bind "click" event for links with title="submit" 
	$("a[title=submit]").click( function(){
    	// it submits the form it is contained within
		$(this).parents("form").submit();
	});
	
	$("dd").hide();
		$("dt").click(function(){
			$(this).toggleClass("faqon");
			$(this).next().slideToggle("slow");
	});
});
