(function($) {
  var cache = [];
  // Arguments are image paths relative to the current page.
  $.preLoadImages = function() {
    var args_len = arguments.length;
    for (var i = args_len; i--;) {
      var cacheImage = document.createElement('img');
      cacheImage.src = arguments[i];
      cache.push(cacheImage);
    }
  }
})(jQuery)


jQuery.preLoadImages("/images/menu/contact-us_active.gif","/images/menu/finding-us_active.gif","/images/menu/guestbook_active.gif","/images/menu/home_active.gif","/images/menu/journal_active.gif","/images/menu/make-a-reservation_active.gif","/images/menu/menus_active.gif","/images/menu/opening-times_active.gif","/images/menu/parties-events_active.gif","/images/menu/reservations_active.gif","/images/menu/the-bluebell_active.gif");

$(document).ready(function(){
	$('#content select').sSelect({ddMaxHeight: '200px'});
	
	// toggle newsletter
	 $("a.toggle").toggle(
	      function () {
	        $(this).parent().parent().parent().hide();
	        $('div.unsubscribe').show();
	      },
	      function () {
	        $(this).parent().parent().parent().hide();
	        $('div.subscribe').show();
	      }
	    );
	
	// detect small screen size 
	if ($(window).width()<=1024) {
		$('body').addClass('small');
	}
	
	$(window).resize(function(){
		if ($(window).width()<=1024) {
			$('body').addClass('small');
		} else {
			$('body').removeClass('small');	
		}
	});

});
