
$(document).ready(function() {
	$('.invite-all').click(function(){
		inviteFriends();
		return false;
	});
});
function inviteFriends(){
	FB.ui(
	   {
	     method: 'apprequests',
	     message: 'I\'m using Praybook to pray for my Facebook friends and I ' +
	    	 		'want to invite you to join me.  Pray for your friends in an easy, ' +
	    	 		'enjoyable and encouraging way.  The Praybook family is lifting up the ' + 
	    	 		'world. . . one friend at a time.',
	     data: 'tracking information for the user',
	     display: 'popup'
	     
	   },
	   function(response) {
	     
	     
	   }
	 );
}
