var fadeoutSpeed=600;var fadeinSpeed=600;var inTransit=false;var currentPanelID,newPanelID,currentTitle=null;function swapPanels(newPanelID){if(!currentPanelID){currentPanelID=newPanelID;currentTitle=$("#"+currentPanelID+"Link").text();$("#"+newPanelID+"Link").prepend('{');$("#"+newPanelID+"Link").append('}');fadeinPanel()}else if((newPanelID!=currentPanelID)&&(!inTransit)){inTransit=true;$("#"+currentPanelID).fadeOut(fadeoutSpeed,fadeinPanel);$("#"+currentPanelID+"Link").removeClass('highlighted');$("#"+currentPanelID+"Link").text(currentTitle);currentPanelID=newPanelID;currentTitle=$("#"+currentPanelID+"Link").text();$("#"+newPanelID+"Link").prepend('{');$("#"+newPanelID+"Link").append('}')}}function swapGalleryPanels(newPanelID){if(!currentPanelID){currentPanelID=newPanelID;currentTitle=$("#"+currentPanelID+"Link").text();fadeinGalleryPanel()}else if((newPanelID!=currentPanelID)&&(!inTransit)){inTransit=true;$("#"+currentPanelID).fadeOut(fadeoutSpeed,fadeinGalleryPanel);$("#"+currentPanelID+"Link").removeClass('highlighted');$("#"+currentPanelID+"Link").text(currentTitle);currentPanelID=newPanelID;currentTitle=$("#"+currentPanelID+"Link").text()}}function fadeinGalleryPanel(){$("#"+currentPanelID+"Link").addClass('highlighted');$("#"+currentPanelID).fadeIn(fadeoutSpeed,confirmSwap)}function fadeinPanel(){changeEmail(currentPanelID+"@theworkhaus.co.uk");$("#"+currentPanelID+"Link").addClass('highlighted');$("#"+currentPanelID).fadeIn(fadeoutSpeed,confirmSwap)}function confirmSwap(){inTransit=false}function changeEmail(newEmail){$("#roundelLink").attr("href","mailto:"+newEmail)}function moveGalleryPanel(projectCount,direction){for(x=1;x<=projectCount;x++){tempPage="page_"+x;if(tempPage==currentPanelID){if(direction=='back'){if(x>1){prevPage="page_"+(x-1);swapGalleryPanels(prevPage)}}if(direction=='next'){if(x<projectCount){nextPage="page_"+(x+1);swapGalleryPanels(nextPage)}}}}}