/*//////////////////////////////////////////////////////////////////////////////
// global.js
////////////////////////////////////////////////////////////////////////////////
// The dedicated JavaScript module for the site
////////////////////////////////////////////////////////////////////////////////
// AUTHOR  : Paul Rees
// CONTACT : dev@page87.com
// CREATED : 28-10-06
// CVS     : $Id$
//////////////////////////////////////////////////////////////////////////////*/

// preload the common images so we don't have to wait for the slideshow images 
// to preload before the page is properly rendered

img_1 = new Image(750, 272); 
img_1.src = "img/main_table_bg.jpg";

img_2 = new Image(329, 226); 
img_2.src = "img/image_frame.gif";

img_3 = new Image(288, 18); 
img_3.src = "img/brochures_menu.gif";

img_4 = new Image(214, 18); 
img_4.src = "img/folders_menu.gif";

img_5 = new Image(184, 18); 
img_5.src = "img/misc_menu.gif";

function show_buzzwords(count)
{
	var buzzword_count = 6; // total number of buzzwords to show
	
	if (count <= buzzword_count)
	{
	    if (document.all) 
	        document.all['buzz-' + count].style.visibility = 'visible';
		else if (document.getElementById)
			document.getElementById('buzz-' + count).style.visibility = 'visible';
	}
	
	setTimeout("show_buzzwords(" + (++count) + ")", 1200);
	
	if (count == buzzword_count) // finished showing the buzzwords, now load the first 'real' page
		setTimeout("location.href='brochures.html'", 4000);
}

