// JavaScript Document

$(function() {
	$("div#makeMeScrollable").smoothDivScroll({scrollingSpeed: 2, mouseDownSpeedBooster: 2, visibleHotSpots: "always", startAtElementId: "startAtMe"});
});

$(document).ready(function(){
	$('#menu a.level0').click(function(){ $(this).next('div').slideToggle('slow'); $(this).toggleClass('cur'); return false; });
	$('div#makeMeScrollable div.scrollableArea img').css({ 'opacity':'0.5' });
	$('div#makeMeScrollable div.scrollableArea img').hover(function(){
			$(this).stop(true,true).animate({ opacity:1 });
		},function(){
			$(this).stop(true,true).animate({ opacity:0.5 });
		});
});
