//do when the document is ready
$(document).ready(function() {
 
    		    		
  
    //console.log('i just tried to attach it');
    $('#pageBanner_3').hide();
    $('#pageBanner_3').fadeIn(5000); // END Selector
    
    $('#contentArea').hide();
    $('#contentArea').fadeIn('normal');
    
    $('#pageBanner_1').hide();
    $('#pageBanner_1').fadeIn('normal');	
    
    
    $('div.expand').hide();
    
    $('h2.expand').click(function() {
    	console.log('i clicked it');

    	$(this).next().toggle('fast');
    	$('#accLogo').fadeOut('fast');

    });
    
    
    
    
    
    
    //make all MurphySchmidt into the bold version...
    $('p').each(function() {
    	var temp = $(this).html();
		var myNewString = temp.replace("MurphySchmidt", "<strong>Murphy</strong>Schmidt");
		$(this).html(myNewString);
    });
     $('li').each(function() {
    	var temp = $(this).html();
		var myNewString = temp.replace("MurphySchmidt", "<strong>Murphy</strong>Schmidt");
		$(this).html(myNewString);
    });
    
    
    $('ul#primaryNavigation li a').each(function() {
    	var temp = $(this).html();
		var myNewString = temp.replace("Schmidt", '<span style="font-weight:normal">Schmidt</span>');
		$(this).html(myNewString);
    });
    

   
}); //END do when the document is ready
	
   


    
    
 
