$(document).ready(function(){
	$('.helpicon').hover(
	function(){
		$(this).children('.popup').fadeIn('fast');
	},function(){
		$(this).children('.popup').fadeOut('fast');
	});
	
	$('.dismissBox').click(
		function(){
			$(this).parent().fadeOut('slow');
		}
	)
});