	jQuery(document).ready(
	function()
	{
		jQuery('#xxxSlide').innerfade(
		{
			animationtype: 'fade',
			speed: 1000,
			timeout: 4000,
			type: 'random',
			containerheight: '3em'
		});
	});

	jQuery(document).ready(function()
    {
        jQuery('#news').innerfade(
        { 
            animationtype: 'slide', 
            speed: 750, 
            timeout: 2000, 
            type: 'random', 
            containerheight: '1em' 
        });
        jQuery('#portfolio').innerfade(
        { 
            speed: 'slow', 
            timeout: 4000, 
            type: 'sequence', 
            containerheight: '220px' 
        });
        jQuery('.fade').innerfade(
        { 
            speed: 'slow', 
            timeout: 1000, 
            type: 'sequence', 
            containerheight: '1.5em' 
        }); 
     }); 
