$(document).ready(function() { 

	   $("ul.CMSListMenuUL").superfish({ 
	            delay:      500,                            // one second delay on mouseout 
	            animation:  {opacity:'show',height:'show'}  // fade-in and slide-down animation 
	         }); 
	   $('.top a').click(function(){
			$('html, body').animate({scrollTop:0}, '3000');
	});
	
	$("div.scrollable").scrollable({
		size: 1,
		speed: 300,
		clickable: false
	}).circular().autoscroll({ 
    steps: 1, 
    interval: 5000         
	});

	
}); //end doc ready

function clearText(thefield){
if (thefield.defaultValue==thefield.value)
thefield.value = ""
}