
	/**
	 * Set up example for form inputs
	 **/
	$('.example-text').example(function() {
	   return $(this).attr('title'); 
	});
	
	$('body.home #home-features li').bind('mouseenter', function() {
		$(this).find('h3').fadeIn();
	}).bind('mouseleave', function() {
		$(this).find('h3').fadeOut();
	});
	
		


