jQuery(function(){	
				// hide div with reg info
				$("div#joinIcom").hide();	
				// hide arrow and show div when clicked
    		$("a#showBenefits").click(function(){
					$(this).hide();
    			$("div#joinIcom").slideDown("slow");	
					//return false on click
					return false;
    		});
			});

