$(document).ready(function() { 

	$.preloadCssImages();
	
	$('#image_rotate').innerfade();   
	
	$('.acts dd').hide('slow');
	
	$('.acts dt').hover(function(){
		$(this).next('dd').slideToggle();
	}, function(){
		$(this).next('dd').slideToggle();
	})
	
	

});
