$(document).ready(function() {
		
			// Smooth Transitions for DIV Elements
			$('.block').bind('mouseenter', function() { $(this).animate({ backgroundColor: '#850f0a' },300); });
			$('.block').bind('mouseleave', function() { $(this).animate({ backgroundColor: '#320001' },300); });
			
			// Smooth Transitions for DIV Menu Elements
			$('.mblock').bind('mouseenter', function() { $(this).animate({ backgroundColor: '#600000' },300); });
			$('.mblock').bind('mouseleave', function() { $(this).animate({ backgroundColor: '#4b3e35' },300); });
			
			// Elastic Textboxes sitewide
			$('textarea').elastic();
			$('textarea').trigger('update');
			
			// Colorbox calls
			$(".booking").colorbox({opacity:0.5});
			$(".login").colorbox({opacity:0.5});
			
			// Tooltip
			$("#mainsection a[title]").tooltip({

            // tweak the position
            offset: [2, 200],
            position: 'top left',
            effect: 'slide'

            // add dynamic plugin with optional configuration for bottom edge
             }).dynamic({ bottom: { direction: 'down', bounce: true } });

});
