jQuery('html').addClass('js');


jQuery(document).ready(function( $ ) {

$(this).delay(200,function(){   // 200
	$("#photo").fadeIn(800);	// 800
});
$(this).delay(700,function(){  	// 700
	$("#content").fadeIn(800);	// 800
});

$(this).delay(710,function(){  
$('.scroll-pane').jScrollPane({maintainPosition:false});
});

$(this).delay(1000,function(){  //1000
	$("#photos-preload").show();
	$("#footer").fadeIn(800);	
});

$('.cnav-appetizer-specials').addClass('current_page_item');
$("#hh-appetizer-specials").show();
$("#hh-appetizer-specials").addClass('active-div');
$('.page-item-143').addClass('current_page_item');
$("#m-starters").show();
$("#m-starters").addClass('active-div');

  $(".quick-nav li a").click(function(){ 
    // capture the url to load from the href 
    var urlLoad = $(this).attr("href");
	$('.current_page_item').removeClass('current_page_item');     
    $(this).parent().addClass('current_page_item');
    $(".active-div").fadeOut(function() { 
    	$(this).removeClass('active-div');
        $(urlLoad).fadeIn(); 
		$('.scroll-pane').jScrollPane({maintainPosition:false});        
        $(urlLoad).addClass('active-div');         
        });

    return false; 
  }); 



$("#photo").mouseleave(function() {
	$("#thumbs").fadeOut();
});
$("#photo").mouseenter(function() {
	$("#thumbs").fadeIn();
});




}); // Document Ready
