	// Load roll-overs
	btns="images/home/buttons/";
	branding=new Image(); branding.src=btns + 'branding2.jpg';
	illustration=new Image(); illustration.src=btns + 'illustration2.jpg';
	advertising=new Image(); advertising.src=btns + 'advertising2.jpg';
	webDesign=new Image(); webDesign.src=btns + 'webDesign2.jpg';

	var unHide = function() {
		document.getElementById('coffeeCup').style.visibility='visible';
		document.getElementById('homeMark').style.visibility='visible';
		document.getElementById('navBlanks').style.visibility='visible';
		document.getElementById('nav').style.visibility='visible';
	}

	var pencilAppear = function() {
		var pencil = document.getElementById('pencil');
		pencil.style.visibility='visible';
	}
	
	var brandingBlank = function() {
		var bb = document.getElementById('brandingBlank');
		var anim2 = new YAHOO.util.Motion(bb, {points: { by: [150,0]}});
		anim2.animate();
	}

	var illustrationBlank = function() {
		var bb = document.getElementById('illustrationBlank');
		var anim = new YAHOO.util.Motion(bb, {points: { by: [199,0]}});
		anim.animate();

	}
	var advertisingBlank = function() {
		var bb = document.getElementById('advertisingBlank');
		var anim = new YAHOO.util.Motion(bb, {points: { by: [182,0]}});
		anim.animate();

	}
	var webDesignBlank = function() {
		var bb = document.getElementById('webDesignBlank');
		var anim = new YAHOO.util.Motion(bb, {points: { by: [153,0]}});
		anim.animate();

	}
	
	var moveBlankBox = function() {
		var bb = document.getElementById('navBlanks');
		var anim = new YAHOO.util.Motion(bb, {points: { by: [250,0]}});
		anim.animate();		
	}
	
	var uncover = function() {
		unHide();
		window.setTimeout('brandingBlank()',1000);
		window.setTimeout('advertisingBlank()',2500);
		window.setTimeout('illustrationBlank()',4000);
		window.setTimeout('webDesignBlank()',5500);
		window.setTimeout('moveBlankBox();',7000);
		window.setTimeout('pencilAppear();',7000);
	}