// initiate functions
var supercow = {
	init: function() {		
		supercow.fonts.init();
		//supercow.nav.init();
	}
};

// fonts
supercow.fonts = {
  init: function() {    
    Cufon.replace('h1, h2, h3', {hover: true});
    Cufon.replace('nav ul li', {hover: true});
  }
};

// nav hover effect
supercow.nav = {
  init: function() {    
    if($('nav ul li').length > 0) {
      $('nav ul li a').hover(
        function () {
          $(this).stop().animate({'color': '#d60707'}, 400);
        }, 
        function () {
          $(this).stop().animate({'color': '#505050'}, 400);
        }
      );  
    }
  }
};

$(document).ready(supercow.init);
