$(document).ready(function(){
	
	$('.fti, #ftMessage').click(function(){
		$(this).val('');
	});
	
	/**
	* Dropdown Magic
	*/
	$('li').has('ul.sub-menu').hover(function(){
		$('ul.sub-menu', this).stop(true, true).fadeIn('300');
	}, function(){
		$('ul.sub-menu', this).stop(true, true).fadeOut('300');
	});
	
	$('#clickHome').click(function(){
		window.location = "http://www.marathoneducationpartners.org/";
	});

 });
