$(window).load(function() {
  //-------------- BEGIN FUNCTIONS --------------//
  
  //Fix z-index stacking for IE 7
  $(function() {
  	var zIndexNumber = 1000;
  	$("div").each(function() {
  		$(this).css("zIndex", zIndexNumber);
  		zIndexNumber -= 10;
  	});
  });
  $("#main").css("zIndex", 0); 

  //---------------------------------------------//
  
  //Initialize drop menus
  $("li.enable-drop-menu").hoverIntent(function(){
    //hide all menus
    $("div.drop-menu").hide();
    //slide down active menu
    $($(this).children()[0]).slideDown("fast");
  },function(){
  var subMenu = jQuery(this).children();
    //hide active menu
    $($(this).children()[0]).hide();
  });
  
  //---------------------------------------------//  
  
  //Initialize hero image slideshow
  
  /*
    Effect types:
    - sliceDown
    - sliceDownLeft
    - sliceUp
    - sliceUpLeft
    - sliceUpDown
    - sliceUpDownLeft
    - fold
    - fade
    - random
  */
  $("#hero-slideshow").nivoSlider({
    effect:'random',
    animSpeed:1000,
    pauseTime:5000,
    directionNav:false,
    controlNav:false
  });
  
  //-------------- END FUNCTIONS ----------------// 
});
