$(document).ready(
	function(){
		$('#offer1').innerfade({
			speed: 'slow',
			timeout: 4000,
			type: 'sequence',
			containerheight: '140px'
		});
	}
);
$(document).ready(
	function(){
		if ($('#offer2')) {
			$('#offer2').innerfade({
				speed: 'slow',
				timeout: 4000,
				type: 'sequence',
				containerheight: '140px'
			});
		}
	}
);
$(document).ready(
	function(){
		if ($('#offer3')) {
			$('#offer3').innerfade({
				speed: 'slow',
				timeout: 4000,
				type: 'sequence',
				containerheight: '140px'
			});
		}
	}
);		
