$(document).ready(function() {

	$('nav ul').superfish();
	
	$('#newsfeed').rssfeed('http://www.oldrectoryhotel.co.uk/welcome/ournews/feed');
	
	$(".gallery a[rel]").colorbox();
	$(".hotelgallery a[rel]").colorbox();
	
	var imgout = $('#mainimg').attr('src');
	
	$("a img").hover(
	  function(){
		var img = $(this).closest('a').attr('href');
		$('#mainimg').show().attr('src',img);
	  },
	  function () {
		$('#mainimg').show().attr('src',imgout);
	  }
	);

});
