jQuery(document).ready(function() {
  $(".routine_slider").hide();
  $(".menu_head").click(function()
  {
    $(this).next(".routine_slider").slideToggle(300);
  });
  $('#kitties').cycle({
		fx: 'fade', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
		random: 1,
		timeout:  9000
	});
  $("#city-kitties").fancybox({
		'width'				: '55%',
		'height'			: '75%',
		'autoScale'			: false,
		'type'				: 'iframe',
		'speedIn'			: 200,
		'speedOut'			: 200,
		'overlayOpacity'    : .4,
		'overlayColor'		: '#fff'
	});
  $("#nutrition").fancybox({
		'width'				: '55%',
		'height'			: '75%',
		'autoScale'			: false,
		'type'				: 'iframe',
		'speedIn'			: 200,
		'speedOut'			: 200,
		'overlayOpacity'    : .4,
		'overlayColor'		: '#fff'
	});
 /* $("#menu_hours img").hide();*/
  var windowHeight = $(window).height();
  var contentHeight = $("#main_bg").height();
  var bgHeight = (windowHeight - contentHeight);
  if (bgHeight > 0) {
      $("#footer_bg").height(bgHeight);
  }
  else {
	  $("#footer_bg").height(0);
  }
});
jQuery(window).resize(function() {
  var windowHeight = $(window).height();
  var contentHeight = $("#main_bg").height();
  var bgHeight = (windowHeight - contentHeight);
  if (bgHeight > 0) {
      $("#footer_bg").height(bgHeight);
  }
  else {
	  $("#footer_bg").height(0);
  }
});
