// init.innerfade.js
//
// start the innerfade jQuery library

	   $(document).ready(
				function(){
					$('ul#fromto').innerfade({
						animationtype: 'fade',
						speed: 1000,
						timeout: 5000,
						type: 'sequence',
						containerheight: '347px'
					});
					
					$('ul#portfolio').innerfade({
						speed: 'slow',
						timeout: 4000,
						type: 'sequence',
						containerheight: '220px'
					});
					
					$('.fade').innerfade({
						speed: 'slow',
						timeout: 1000,
						type: 'sequence',
						containerheight: '1.5em'
					});

			});