// JavaScript Document

function CreateProcess() 
{
  document.write("<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,19,0' width='950' height='350'>"); 
  document.write("<param name='movie' value='static/images/Process.swf'><param name='quality' value='high'><param name='wmode' value='transparent'>"); 
  document.write("<embed src='static/images/Process.swf' width='950' height='350' quality='high' pluginspage='http://www.macromedia.com/go/getflashplayer' type='application/x-shockwave-flash' wmode='transparent'></embed></object>"); 
}

function CreateGallery01()
{
  document.write("<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,19,0' width='950' height='360'>"); 
  document.write("<param name='movie' value='Gallery01/Gallery01.swf'><param name='quality' value='high'><param name='wmode' value='transparent'>");
  document.write("<embed src='Gallery01/Gallery01.swf' width='950' height='360' quality='high' pluginspage='http://www.macromedia.com/go/getflashplayer' type='application/x-shockwave-flash' wmode='transparent'></embed></object>"); 
}

function CreateGallery02() {
    document.write("<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,19,0' width='950' height='360'>");
    document.write("<param name='movie' value='Gallery02/Gallery02.swf'><param name='quality' value='high'><param name='wmode' value='transparent'>");
    document.write("<embed src='Gallery02/Gallery02.swf' width='950' height='360' quality='high' pluginspage='http://www.macromedia.com/go/getflashplayer' type='application/x-shockwave-flash' wmode='transparent'></embed></object>");
}

function CreateGallery03() {
    document.write("<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,19,0' width='950' height='360'>");
    document.write("<param name='movie' value='Gallery03/Gallery03.swf'><param name='quality' value='high'><param name='wmode' value='transparent'>");
    document.write("<embed src='Gallery03/Gallery03.swf' width='950' height='360' quality='high' pluginspage='http://www.macromedia.com/go/getflashplayer' type='application/x-shockwave-flash' wmode='transparent'></embed></object>");
}

function CreateGallery04() {
    document.write("<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,19,0' width='950' height='360'>");
    document.write("<param name='movie' value='Gallery04/Gallery04.swf'><param name='quality' value='high'><param name='wmode' value='transparent'>");
    document.write("<embed src='Gallery04/Gallery04.swf' width='950' height='360' quality='high' pluginspage='http://www.macromedia.com/go/getflashplayer' type='application/x-shockwave-flash' wmode='transparent'></embed></object>");
}

function CreateGallery05() {
    document.write("<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,19,0' width='950' height='360'>");
    document.write("<param name='movie' value='Gallery05/Gallery05.swf'><param name='quality' value='high'><param name='wmode' value='transparent'>");
    document.write("<embed src='Gallery05/Gallery05.swf' width='950' height='360' quality='high' pluginspage='http://www.macromedia.com/go/getflashplayer' type='application/x-shockwave-flash' wmode='transparent'></embed></object>");
}

function Launch370(page) { 
OpenWin = this.open(page, "Gallery", "toolbar=no,menubar=no,location=no,scrollbars=no,resizable=yes,width=370,height=510"); 
} 
function Launch510(page) { 
OpenWin = this.open(page, "Gallery", "toolbar=no,menubar=no,location=no,scrollbars=no,resizable=yes,width=510,height=510"); 
}

// Rollover functions

function initRollovers() {
	if (!document.getElementById) return
	
	var aPreLoad = new Array();
	var sTempSrc;
	var aImages = document.getElementsByTagName('img');

	for (var i = 0; i < aImages.length; i++) {		
		if (aImages[i].className == 'imgover') {
			var src = aImages[i].getAttribute('src');
			var ftype = src.substring(src.lastIndexOf('.'), src.length);
			var hsrc = src.replace(ftype, '_on'+ftype);

			aImages[i].setAttribute('hsrc', hsrc);
			
			aPreLoad[i] = new Image();
			aPreLoad[i].src = hsrc;
			
			aImages[i].onmouseover = function() {
				sTempSrc = this.getAttribute('src');
				this.setAttribute('src', this.getAttribute('hsrc'));
			}	
			
			aImages[i].onmouseout = function() {
				if (!sTempSrc) sTempSrc = this.getAttribute('src').replace('_on'+ftype, ftype);
				this.setAttribute('src', sTempSrc);
			}
		}
	}
}

window.onload = initRollovers;
