// JavaScript Document

/* $(document).ready(function(){
		$('#rotate').innerfade({ */
$(document).ready(function(){
$('#rotate').css("display","block");
$('#rotate').innerfade({ // innerfade stuff follows
		/* InnerFade http://medienfreunde.com/lab/innerfade/
		Parameters
		**********
		animationtype: Type of animation - 'fade' or 'slide' (Default: 'fade'),
    containerheight: Height of containing element in any css-height-value (Default: 'auto'),
    runningclass: CSS class added to containing element - doesn't replace existing classes (Default: 'innerfade'),
    speed: Fading speed - milliseconds or keywords(slow, normal or fast) (Default: 'normal'),
    timeout: Time between the fades - milliseconds (Default: '2000'),
    type: Type of slideshow - 'sequence' or 'random' (Default: 'sequence')
		*/
		containerheight: '190px', // or whatever the height of your image container
    speed: 2000,
		timeout: 4000,
    type: 'random' // last line has no comma
		});
	}
	
	// additional onload functions go here
	
);