jQuery(document).ready(function($){

	$('.showcommittee').bind('click',function(){
		var id=$(this).attr('id');
		var page=document.location.href;
		page=page.replace("#","");
		// make the db change to add the lead photo
		$.post(page,
			{
				'ajaxrequest':'displaycommittee',
				'committeeid':id
			},
			function (data){
				$('#committeeblock').html(data);
			}
		);

/*		$.post(page,
			{
				'ajaxrequest':'displayevents',
				'id':id
			},
			function (data){
				$('#callist').html(data);
			}
		);
  */		$('html, body').animate({scrollTop:0}, 'fast');

	});// end showcommittee

/*	$('.showevents').live('click',function(){
		var id=$(this).attr('id');
		var page=document.location.href;
		// make the db change to add the lead photo
		$.post(page,
			{
				'ajaxrequest':'displayevents',
				'id':id
			},
			function (data){
				$('#callist').html(data);
			}
		);
		$('html, body').animate({scrollTop:0}, 'fast');

	});// end showevents
*/

});

