$(document).ready(function(){
	//Open all links with rel="external" in new window
	$('a[rel="external"]').click( function() {
        window.open( $(this).attr('href') );
        return false;
    });
	
	//Wrap Main Gallery images with class for background colour
	$("#main-gallery a").wrap("<span class='img-bg'>" + "</span>");
	//Wrap Photo Gallery images with class for background colour
	$("#photo-gallery a").wrap("<span class='img-bg'>" + "</span>");
		
	//Fade images onload and on hover
	$("#main-gallery a").fadeTo(2000, 0.7); // Sets the opacity of the thumbs to fade down to 60% when the page loads
	$("#main-gallery a").hover(function(){
	$(this).fadeTo("slow", 1); // Sets the opacity to 100% on hover
	},function(){
	$(this).fadeTo("slow", 0.7); // Sets the opacity back to 60% on mouseout
	});
	//Fade images onload and on hover
	$("#photo-gallery a").fadeTo(2000, 0.7); // Sets the opacity of the thumbs to fade down to 60% when the page loads
	$("#photo-gallery a").hover(function(){
	$(this).fadeTo("slow", 1); // Sets the opacity to 100% on hover
	},function(){
	$(this).fadeTo("slow", 0.7); // Sets the opacity back to 60% on mouseout
	});

	//Print Menu
	$('body.dining-s #main-content').prepend('<div id="print"><a href="#print">Print Menu</a></div>');
	$('body.dining-s #main-content #print a').click(function() {
		window.print();
		return false;
	});
	

	
});
