var c = 0;
	function showAd(title,content) {

	$("div#adspace div").fadeOut("fast",function(){
	
		
		$("div#adspace div").html("<h2>"+title+"</h2>"+content)

	$("div#adspace").fadeTo("fast",0.5);

	$("div#adspace").fadeIn("slow",function(){

	
		$("div#adspace div").fadeIn("slow");

	});
	});

timerID = setTimeout("UpdateAd()", 5000);
	}
	
	
   
   
$(document).ready(function(){
	

	showAd("Facebook Apps","<p>You should hire me to make a Facebook application</p>");

	

   
});


timerID = setTimeout("UpdateAd()", 5000);

function UpdateAd() {
c++;
if (c > 2) c =0
	if (c==0) showAd("Facebook Applications","<p>Facbook is great!</p>");
	if (c==1) showAd("Simple websites from $599","<p>Get a basic website &amp; CMS system in place for only $599.  Everything you need to get your web presence off the ground!</p>");
	if (c==2) showAd("Something Else!","why not?")
	}
	


	