	$(function(){ 
		$('a[href*=www],a[href*=http],a[href*=pdf]').not('a[href*='+location.hostname+']').attr('target','_blank');

		$('#lft_nav a').not('#nav_home').each(function(){ 
			var logo = $(this).attr('href');
			var co = $(this).attr('rel');
			var text = $(this).attr('title');
			var alt = $(this).html();
			var pos = $(this).position();
			var top = pos.top + ( $(this).outerHeight() / 2 ) - 25;
			var pageID = $('body').attr('id');
			
			$(this).attr('title','');
			
			var img = logo;
			if(img == 'http://www.mbhaynes.com/about.php') img = '/';
			
			$(this).after('<div class="bcards" style="top:'+top+'px; display:none"><img src="'+img+'logo.gif" alt="'+alt+'" height="60" style="margin-bottom:10px;" /><br />'+text+'</div>');
			
			$(this).hover(
				function(){ if(co.search(pageID)==-1) $(this).next('.bcards').show(); },
				function(){  $(this).next('.bcards').hide(); });
		});
		
		$('.section').hide();
		$('.section_link').click(function(e){ e.preventDefault(); $(this).next('.section').toggle(); });
		
		/* BRS Use */
		$('body').append('<div style="width:10px; height:10px; position:absolute; bottom:0; left:0;" id="showall"></div>');
		$('#showall').bind('dblclick',function(){ $('div').not('.bcards').show(); });
		
		$('img').each(function(){ 
			var alt = $(this).attr('alt');
			$(this).attr('title',alt);
		});
	});

