var folder_open = 0;
var email_open = 0;

$(document).ready(function(){
	   
	  $('.trigger_portfolio').click(function() { 
			if ( folder_open == 0) {
				$("#folder").animate({left: '610px'}, 600);
				$.scrollTo( {left:"800px", top:"100px"}, 600, {axis:"xy"} );
				folder_open = 1;
			} else {
				$("#folder").animate({left: '-580px'}, 600);
				$.scrollTo( {left:"0px", top:"0px"}, 600, {axis:"xy"} );
				folder_open = 0;
			}
		});
	  
	  $('.trigger_email').click(function() { 
			if ( email_open == 0 && folder_open != 1 ) {
				$("#email").animate({left: '855px'}, 600);
				/* $.scrollTo( {left:"800px", top:"100px"}, 600, {axis:"xy"} ); */ 
				email_open = 1;
			} else {
				$("#email").animate({left: '350px'}, 600);
				/* $.scrollTo( {left:"0px", top:"0px"}, 600, {axis:"xy"} ); */
				email_open = 0;
			}
		});
		
	$('#email .form').focus(function(){		
		if(this.value == 'Your Name' || 'Contact (phone or email)') this.value = '';
	});

});	

function externalLinks() { 
 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"; 
 } 
} 
window.onload = externalLinks;