	
	// initialise plugins
	jQuery(function(){
		jQuery('ul.sf-menu').superfish({
			autoArrows:  false,
			speed:'fast'
		});
	});
	$(document).ready(function(){
		/*$('#btmtextwrap').hover(function(){
			var targetTop = $('#btmtextwrap').offset().top;
			var highest = $('#btmtextwrap > div.linkrange').height();
			$("html,body").animate({scrollTop:targetTop},800);
			$(this).stop().animate({ height: highest },{queue:false,duration:800} );			
		},function(){
			$(this).stop().animate({ height: '0px' },{queue:false,duration:800});
		});*/
		$('#btmtextwrap > div.list').toggle(function(){
			var targetTop = $('#btmtextwrap').offset().top;
			//var highest = $('#btmtextwrap > div.linkrange').height();
			var highest = $('#dontmoveit').height();
			$("html,body").animate({scrollTop:targetTop},800);
			$('#btmtextwrap').stop().animate({ height: highest },{queue:false,duration:800} );			
		},function(){
			$('#btmtextwrap').stop().animate({ height: '0px' },{queue:false,duration:800});
		});
	});

