var images = new Array('/images/g-slideshow-machine.jpg','/images/g-slideshow-boxes.jpg','/images/g-slideshow-baseballhelmet.jpg','/images/g-slideshow-contact.jpg');

jQuery(document).ready
(
 	function()
	{
		for(i=0 ; i<images.length ; i++)
		{
			jQuery('<img>').attr('src',images[i]);
		}
	}
);

function __play_video()
{
	html =  '';
	html += '<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" width="320" height="255" codebase="http://www.apple.com/qtactivex/qtplugin.cab">';
	html += '<param name="src" value="http://www.cleanlikepros.com/video/clubkit.mov">';
	html += '<param name="autoplay" value="false">';
	html += '<param name="controller" value="true">';
	html += '<param name="loop" value="true">';
	html += '<embed src="http://www.cleanlikepros.com/video/clubkit.mov" width="320" height="255" autoplay="false" controller="true" loop="true" pluginspage="http://www.apple.com/quicktime/download/"></embed>';
	html += '</object>';
	
	jQuery('#video img').fadeOut
	(
	 	'slow',
		function()
		{
			jQuery('#video').html(html);	
		}
	);
	
}

var j = 1;

function __slideshow()
{
	if(j >= images.length)
	{
		j = 0;
	}
	
	jQuery('#slideshow img').attr('src',images[j++]);
}