$(document).ready(

	function() {

	    if ($('#news').length > 0) {
	        $('#news').innerfade({
	            animationtype: 'slide',
	            speed: 750,
	            timeout: 2000,
	            type: 'random',
	            containerheight: '1em'
	        });
	    }

	    if ($('ul#portfolio').length > 0) {
	        $('ul#portfolio').innerfade({
	            speed: 1000,
	            timeout: 3000,
	            type: 'sequence',
	            containerheight: '400px'
	        });
	    }

	    if ($('.fade').length > 0) {
	        $('.fade').innerfade({
	            speed: 1000,
	            timeout: 6000,
	            type: 'random_start',
	            containerheight: '1.5em'
	        });
	    }

	    if ($('.adi').length > 0) {
	        $('.adi').innerfade({
	            speed: 'slow',
	            timeout: 5000,
	            type: 'random',
	            containerheight: '150px'
	        });
	    }

	});