jQuery(document).ready( function() {
	var j = jQuery;
/**** Page Load Actions **********************/
	/* Classified filter and scope set. */
	bp_init_objects( [ 'bookmark' ] );
	jQuery(".bookmark").click(function() {
		//var type = jQuery(this).attr('class');
		var id = jQuery(this).attr('id');

		jQuery(this).addClass('loading');

		jQuery.post( ajaxurl, {
			action: 'bp_bookmark',
			'cookie': encodeURIComponent(document.cookie),
			'postid': id
		},
	
		function(data) {jQuery(".add-bookmark").empty().append(data);});
	});
});