$(document).ready(function(){

	
	$(".container").hover(function() { //When trigger is clicked...

		//Following events are applied to the subnav itself (moving subnav up and down)
		$(this).find(".image_holder_2").fadeIn(500); //Drop down the subnav on click

		
		}, function(){
			$(this).find(".image_holder_2").fadeOut(2000); //When the mouse hovers out of the subnav, move it back up
		});

$('ul#menu-hermitage').prepend('<h4>Hermitage</h4>');
$('ul#menu-what-we-offer').prepend('<h4>What We Offer</h4>');
$('ul#menu-solitude').prepend('<h4>Solitude</h4>');
$('ul#menu-glendalough').prepend('<h4>Glendalough</h4>');
$('ul#menu-contact').prepend('<h4>Contact</h4>');
$('.sidenav ul:first').prepend('<li><a href="http://www.glendaloughhermitage.ie" alt="Go to Homepage">Home</a></li>');

	$(".logo a").tooltip({

		// use div.tooltip as our tooltip
		tip: '.tooltip',

		// use the fade effect instead of the default
		effect: 'fade',

		// make fadeOutSpeed similar to the browser's default
		fadeOutSpeed: 100,

		// the time before the tooltip is shown
		predelay: 400,

		// tweak the position
		position: "top center",
		offset: [0, -400]
		
	});	

});

