/* =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 );
	    });
	    

  	  



 	/* =Blog Article Links
	-------------------------------------------------------------------------- */	

	$("#articles a").hover(function() {
	      $(this).stop().animate({backgroundColor: "#C74350"}, 300 )
	    },function(){
	      $(this).stop().animate({backgroundColor: "transparent"}, 300 );
	    });


// End jQuery
});
