$(document).ready(function(){
	$('.toolbar li').hover(
		function() { $('ul', this).css('display', 'block'); },
		function() { $('ul', this).css('display', 'none'); });
	$("a.details").append(" &raquo;");
	$(".caption a").append(" &raquo;");
	$("a.showcoaches").append(" &raquo;");
	$("a.hidecoaches").prepend("&laquo; ");
	$(".bio").parents(".flow").append("<a class='showbio' href=''>Full Bio &raquo;</a>");
	$(".fullbio").append("<a class='hidebio' href=''>&laquo; Hide Bio</a>");
	$("a.showbio").click(function(event){
		$(this).hide();
		$(this).parents(".flow").next("div.fullbio").show();
		event.preventDefault();
	});
	$("a.hidebio").click(function(event){
		$(this).parents(".fullbio").hide();
		$(this).parents(".fullbio").prev(".flow").children(".showbio").show();
		event.preventDefault();
	});
	$("a.showcoaches").click(function(event){
		$(".coaches").hide();
		$(".hidecoaches").hide();
		$(".showcoaches").show();
		$(this).hide();
		$(this).next(".hidecoaches").show();
		$(this).parents(".").next(".coaches").show();
		event.preventDefault();
	});
	$("a.hidecoaches").click(function(event){
		$(this).hide();
		$(".coaches").hide();
		$(this).prev(".showcoaches").show();
		event.preventDefault();
	});
});

/* weather code
var wx_locID = '80301';
var wx_targetDiv = 'wx_module_6473';
var wx_config='SZ=180x150*WX=FHW*LNK=SSNL*UNT=F*BGI=seasonal2*MAP=null|null*DN=fastforwardsports.net*TIER=0*PID=1142822119*MD5=c837e96576d542c34255c88bee517ea2';
document.write('<scr'+'ipt src="'+document.location.protocol+'//wow.weather.com/weather/wow/module/'+wx_locID+'?config='+wx_config+'&proto='+document.location.protocol+'&target='+wx_targetDiv+'"></scr'+'ipt>');
*/