﻿$('.bio').before('<span class="togglebio">bio</span>');
            
            $('.togglebio').click(function()
                                    {
                                        $(this.parentNode).find('.bio').each(function(){
                                                                                           $(this).slideToggle('fast');
                                                                                            
                                                            
                                                                                        })
                                    
                                    
                                    })
            
            
            if(window.location.hash)
            {
                $(window.location.hash).css('font-weight', 'bold').css('color', '#3F7800');
            }
            
            
            //Hide all empty instances of .unitemail
            $('.unitemail').each(function(){
                                             if($(this).text().length == 0)
                                             {
                                                this.style.display = 'none';
                                             }   
                                                
                                                
                                            });
                                            
            $('.christina').bind('mouseover', function(){ this.src = "media/images/peoplepics/penelope.jpg" ;}).bind('mouseout', function() { this.src = "media/images/peoplepics/49896.jpg"});
        