count = 0;function changeImage(image) {	document.getElementById('featured_image').setAttribute("src", "../admin/featured/image.php/" + image + "?width=400&height=300&image=_images/" + image + "");}function setImage(image) {	stopShow();	changeImage(image);}function slideShow(images) {	image = images[count++];	changeImage(image);	if (count == images.length) count = 0;	nextImage = setTimeout("slideShow(images)", 5000);}function stopShow() {	document.getElementById('toggleShow').setAttribute('href', 'javascript:startShow(images);');	document.getElementById('toggleShow').innerHTML = '<img src="http://74.52.78.210/~phinters/images/f-start.png">';	clearTimeout(nextImage);}function startShow(images) {	document.getElementById('toggleShow').setAttribute('href', 'javascript:stopShow();');	document.getElementById('toggleShow').innerHTML = '<img src="http://74.52.78.210/~phinters/images/f-stop.png">';	slideShow(images);}function nextShow() {	image = images[count++];	changeImage(image);	if (count == images.length) count = 0;}function lastShow() {	count = count - 2;	if (count == -2) count = images.length - 2;	if (count == -1) count = images.length - 1;	image = images[count++];	changeImage(image);	if (count == images.length) count = 0;}