// Parnters Directory
$(document).ready( function() {

	//hides all partner more info
	$("span.partner_more_info").hide();

	//respond to the read-more click
	$("a.read-more").click(function() {
		/*
		needs to do 2 things
			1) reveal the partner_more_info
			2) hide itself
		*/
		$(this).hide();
		$(this).siblings("span.partner_more_info").slideDown("slow");
		return false;
	});	
	
	//respond to the hide-more click
	$("a.hide-more").click(function() {
		/*
		needs to do 2 things
			1) hide the partner_more_info parent
			2) show the read more link
		*/
		$(this).parent("span.partner_more_info").slideUp("slow", function() {$("a.read-more").show();});
		
		return false;		
	}); 

});

// Partners Apply
$(document).ready( function() {

	//populate contact info with personal info
	$("#_i_am_primary_contact").click( function() {
		alert("gonna use it");		
	});
});
