/* 	///// APPLICATION SCRIPTS /////
	(c) 2009 Communication Analysts. Some Rights Reserved.
	Licensed under a Creative Commons license (http://creativecommons.org/licenses/by-sa/3.0/)
*/

$(function() {

	
	
	// Form Help
	$('.form-help a').hover(function() {
		$(this).parent().find('.form-help-pop').fadeIn('fast');
	}, function() {
		$(this).parent().find('.form-help-pop').fadeOut('fast');
	});
	$('.form-help a').click(function() { return false; });
	
	
	$('.form_help_container').hover(function() {
		$(this).children().find('.form-help-pop').fadeIn('fast');
	}, function() {
		$(this).children().find('.form-help-pop').fadeOut('fast');
	});
	$('.form-help a').click(function() { return false; });
	

});

