/*
Site:          ie3gr.com
Page:          functions.js
Created:       May 07 2008
Last Modified: Apr 14 2009
=================================================
ryan masuga, masugadesign.com
ryan@masugadesign.com | Copyright 2008
================================================= */
$(document).ready(function(){
	$("a[@rel='external']").click(function() {
 		return !window.open($(this).attr("href"));
	});

	$('#extendedInfo').hide();
	$('.therBio').hide();
	
	$('a.moreInfo').click(function(){
		$('#extendedInfo').slideToggle();
        if(this.innerHTML == "More Info (Hide)") {
          $(this).html("More Info &raquo;");
        } else {
          $(this).html("More Info (Hide)");
        }return false;
 	});


	$('a.moreBio').click(function(){
	//	var thisID = $(this).attr('id');
		$(this).next('.therBio').slideToggle();
        if(this.innerHTML == "More Info (Hide)") {
          $(this).html("More Info &raquo;");
        } else {
          $(this).html("More Info (Hide)");
        }
		return false;
 	});






	// $("span[@title]").rzTooltip();

}); /* close ready */
