/*=== Declare Variables ===*/
var fading=false,currentImage='#autoSlide';

/*=== Declare Functions ===*/
function swapPhoto(newImage){
    if(newImage!==currentImage){
        // Stop all running animations
        $('#homeTopRight>img').stop(true,true);
        $(currentImage).fadeOut();
        $(newImage).fadeIn();
        currentImage=newImage;
    }
}

/*=== DOM Ready ===*/
$(function() {
    /* Hover Fade */
  $('#autoImg').mouseover(function(){swapPhoto('#autoSlide');});
  $('#homeImg').mouseover(function(){swapPhoto('#homeSlide');});
  $('#businessImg').mouseover(function(){swapPhoto('#businessSlide');});
  $('#lifeImg').mouseover(function(){swapPhoto('#lifeSlide');});
  
  /* FB Hide/Reveal */
  $('#fbook').hide();
  $('#fbookBtn').click(function(){$('#fbook').slideToggle();});
  
  /* Slide Down Panel */
    $("#open").click(function(){
        $("#panel").slideDown("slow");
        if($(".ie7").length){$(".error").hide();}
    });
    $("#close").click(function(){
        $("#panel").slideUp("slow");
        if($(".ie7").length){$(".error").show();}                           
    });
    $("#toggle a").click(function(){$("#toggle a").toggle();});
  
  

  
});
