// NEW WINDOWS
	
	function externalLinks() {
	if (!document.getElementsByTagName && document.getElementById) 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";
	}
	}
	window.onload = externalLinks; 
	
// TOGGLE NAVIGATION	
     $(document).ready(function() {
          $('#toggleButton').click(function() {
               if ($('#toggleSection').is(":hidden"))
               {
                    $('#toggleSection').slideDown("slow");
					$('#toggleSection2').slideUp("slow");
               } else {
                    $('#toggleSection').slideUp("slow");
               }
          });
     });

     $(document).ready(function() {
          $('#toggleProfile').click(function() {
               if ($('#toggleSection2').is(":hidden"))
               {
                    $('#toggleSection2').slideDown("slow");
					$('#toggleSection').slideUp("slow");

               } else {
                    $('#toggleSection2').slideUp("slow");
               }
          });
     });