$(document).ready(function() {
// =================================================================================
		
		


//toggle pictures

	$('.showpicbutton').toggle(
		function(){
			 $('blockquote img').hide('slow');
			 $('.showpic').hide('slow');
			 $('.showpicbutton').attr('src','/img/show_show_pics.gif');
		}, function() {
			 $('blockquote img').show('slow');
			 $('.showpic').show('slow');
			 $('.showpicbutton').attr('src','/img/show_hide_pics.gif');
		}
	);
		
			
					



// =================================================================================

				//toggle groups in show
					$('#bm').toggle(
						function(){
							 $('div.blackmales').hide('slow');
							 $('img#bm').attr('src','/img/arrow_bl2.gif');
						}, function() {
							 $('div.blackmales').show('slow');
							 $('img#bm').attr('src','/img/arrow_up.gif');
                    	}
					);
					
					
					$('#bf').toggle(
						function(){
							 $('div.blackfemales').hide('slow');
							 $('img#bf').attr('src','/img/arrow_bl2.gif');
						}, function() {
							 $('div.blackfemales').show('slow');
							 $('img#bf').attr('src','/img/arrow_up.gif');
                    	}
					);

					
					$('#brm').toggle(
						function(){
							 $('div.brownmales').hide('slow');
							 $('img#brm').attr('src','/img/arrow_bl2.gif');
						}, function() {
							 $('div.brownmales').show('slow');
							 $('img#brm').attr('src','/img/arrow_up.gif');
						}
					);


					$('#brf').toggle(
						function(){
							 $('div.brownfemales').hide('slow');
							 $('img#brf').attr('src','/img/arrow_bl2.gif');
						}, function() {
							 $('div.brownfemales').show('slow');
							 $('img#brf').attr('src','/img/arrow_up.gif');
						}
					);


					$('#gr').toggle(
						function(){
							 $('div.groups').hide('slow');
							 $('img#gr').attr('src','/img/arrow_bl2.gif');
						}, function() {
							 $('div.groups').show('slow');
							 $('img#gr').attr('src','/img/arrow_up.gif');
						}
					);
					
					
					
					
// =================================================================================
});
