/* <![CDATA[ */
function blankTargetFix(){
  if(!document.getElementsByTagName){
    return;
  }

  var anchors = document.getElementsByTagName("a");

  for(var i = 0; i < anchors.length; i++){
    var anchor = anchors[i];

    if(anchor.getAttribute("href") && anchor.getAttribute("rel") == "external"){
      anchor.target = "_blank";
    }
  }
}
/* ]]> */
  $(document).ready(function (){
	  $("#education1, #mentoring1, #counseling1").hide();
	  	  $("#education").click(function(){
			  $("#education1").slideToggle("slow");
			  $("#mentoring1, #counseling1").hide();
		  })
		  $("#mentoring").click(function(){
			  $("#mentoring1").slideToggle("slow");
			  $("#education1, #counseling1").hide();
		  })
		  $("#counseling").click(function(){
			  $("#counseling1").slideToggle("slow");
			  $("#mentoring1, #counseling1").hide();
		  })
               
		  $(".fancypic").fancybox({
			'titleShow'		: false,
			'transitionIn'	: 'elastic',
			'transitionOut'	: 'elastic'
		  });
  
  });



