﻿var inPullNav = false;  
     
  jQuery(document).ready(function(){
  
    jQuery('h1').html('<img src="images/logo_stephband_medcoalblue.png" />');
  
  	jQuery('#parallax').jparallax({});
  	
  	jQuery('#beer').click(function(){
      jQuery('#housing').animate({height: "3em"}, 120).children('#donate').show().siblings().hide();
    });
    
  	jQuery('#contact').click(function(){
      jQuery('#housing').animate({height: 140}, 120).children('#message').show().siblings().hide();
    });
    
    jQuery('#pullnav input, #pullnav textarea').focus(function(){inPullNav = true;}).blur(function(){inPullNav = false;});
    
    jQuery('#pullnav').hover(function(){}, function(){
        if (!inPullNav) {
        jQuery('#housing').animate({height: 0}, 500).children().hide();
        }
    });
    
    jQuery('#contact').hover(
      function(){
        jQuery('#contact img').attr({src: "images/icon_letter_on.png"});
      },
      function(){
        jQuery('#contact img').attr({src: "images/icon_letter.png"});
      }
    );
    
    jQuery('#beer').hover(
      function(){
        jQuery('#beer img').attr({src: "images/icon_beer_on.png"});
      },
      function(){
        jQuery('#beer img').attr({src: "images/icon_beer.png"});
      }
    );
    
    jQuery('body').click(function(){
      //jQuery('#donate').hide();
    });
  	
  });
