$(document).ready(function(){
	var windowHeight = $(window).height();
	windowHeight = windowHeight + 1;
	$("#outerwrapper").css({'height':windowHeight+'px'})



			$(".menu")
			.superfish({
				animation : { opacity:"show",height:"show"}
			});
		
	$("div.scrollable").scrollable({
		interval: 3000,
		loop: true, 
		speed: 600,
		onBeforeSeek: function() {
			this.getItems().fadeTo(300, 0.2);		
		},
		onSeek: function() {
			this.getItems().fadeTo(300, 1);
		}
	});	
	
	/*
	$("ul.serviceList a").myTooltip({
		tooltip:'.tooltip',
		tooltipWidth:200,
		tooltipHeight:55,
		offsetTop:100, 
		offsetLeft:0,
		target:'', // can be null if I'm just targeting an attribute
		timeout:750,
		attribute:'title',  // only set if I'm targeting 
		opacity: 1.0
	});
	*/
	
});




