$(document).ready(function (){	 
	$('#topnavi li a, #booking a, #bottomnavi li a')
		.hover(function(){
			$(this).animate({ opacity: '1.0' }, 250);
		}, function(){
			$(this).animate({ opacity: '0.0' }, 150);
		})
		.click(function(){
			this.blur();
		});
				
	$('a.jScrollArrowUp, a.jScrollArrowDown, input.submit')
		.hover(function(){
			$(this).animate({ backgroundColor: '#557CBF' }, 250);
		}, function(){
			$(this).animate({ backgroundColor: '#fff' }, 150);
		})
		.click(function(){
			this.blur();
		});
});

$(window).load(function () {
	$('#content-text').jScrollPane({
		showArrows:true, 
		scrollbarWidth:15, 
		scrollbarMargin:0
	});
});
