$(document).ready(function(){
$("#browsable").scrollable({speed: 750, circular: true}).navigator().autoscroll({ autoplay: true });

	// GALLERY

$("#logo img").css("opacity","0.0"); $("#logo").hover(function () {$("#logo img").stop().animate({opacity: 1.0}, "fast");}, function () { $("#logo img").stop().animate({opacity: 0.0}, "slow");});



$(".left, .right").css("opacity","0.0");$(".gallery").hover(function () { $(".right, .left").stop().animate({ opacity:0.6 }, "slow"); }, function () { $(".right, .left").stop().animate({opacity:0.0 }, "slow");
		});
		});


