﻿function teaser(){

	$('#teaser').fadeOut('slow', function(){

		$('#teaser').load('portfolio_teaser.php', 
			function(data){
				$('#teaser').html(data);
				$('#teaser').fadeIn('slow');
				
				window.setTimeout('teaser()', 10000);
			}
		);
	});

}

$(document).ready(

	function(){
	
		teaser();
	}
);
