/* =Begin jQuery
============================================================================== */
$(document).ready(function() {
  
  /* =Initialize FancyBox
  -------------------------------------------------------------------------- */
	$("a.fancybox").fancybox();
	
	
	/* =Global Nav Animation
	-------------------------------------------------------------------------- */	
	$("nav a").not(".active")
	  .css({backgroundPosition: "(50% 42px)"})
	  .hover(function() {
	      $(this).stop().animate({backgroundPosition: "(50% 33px)"}, 150 ).animate({backgroundPosition: "(50% 34px)"}, 80 )
	    },function(){
	      $(this).stop().animate({backgroundPosition: "(50% 42px)"}, 300 );
	    });


 	/* =Sticky Sidebar
	-------------------------------------------------------------------------- 
  window.onscroll = function(){
  	if( window.XMLHttpRequest ) { // IE 6 doesn't implement position fixed nicely...
  		if (document.documentElement.scrollTop > 290) {
  			document.getElementById('sb-recent').style.position = 'fixed'; 
  			document.getElementById('sb-recent').style.top = '0';
  			document.getElementById('sb-recent').style.color = 'green';
  		} else {
  			document.getElementById('sb-recent').style.position = 'absolute'; 
  			document.getElementById('sb-recent').style.top = 'auto';
  			document.getElementById('sb-recent').style.color = 'red';
  		}
  	}
  }
  */

// End jQuery
});

