if (document.images) {

			
	about = new Image();
	about.src = "images/nav_about_01.jpg";

	about_on = new Image();
	about_on.src = "images/nav_about_02.jpg";
	
	
	home = new Image();
	home.src = "images/nav_home_01.jpg";

	home_on = new Image();
	home_on.src = "images/nav_home_02.jpg";
	
	
	solutions = new Image();
	solutions.src = "images/nav_solutions_01.jpg";

	solutions_on = new Image();
	solutions_on.src = "images/nav_solutions_02.jpg";
	
	
	support= new Image();
	support.src = "images/nav_support_01.jpg";

	support_on = new Image();
	support_on.src = "images/nav_support_02.jpg";
	
	
	contact = new Image();
	contact.src = "images/nav_contact_01.jpg";

	contact_on = new Image();
	contact_on.src = "images/nav_contact_02.jpg";
	
	
	
		
}




var viewStudio = null;

function popup(url){

	var str = centerWindow(500,502);

	viewStudio = window.open(url, "viewStudio",
"location=no,menubar=no,resizable=no,scrollbars=no," + str);
	viewStudio.focus();

}

var viewStudio = null;

function popup(url){

	var str = centerWindow(420,500);

	viewStudio = window.open(url, "viewStudio",
"location=no,menubar=no,resizable=no,scrollbars=yes," + str);
	viewStudio.focus();

}

function centerWindow(width,height) {

	if(window.screen){

		if(screen.availHeight-30 <= height){

			height = screen.availHeight - 30;

		}

		if(screen.availWidth-10 <= width){

			width = screen.availWidth - 10;

		}

	}

	var str = "height=" + height + ",innerHeight=" + (height+30);
	str += ",width=" + width + ",innerWidth=" + width;

	if (window.screen) {

		var ah = screen.availHeight - 30;
		var aw = screen.availWidth - 10;

		var xc = (aw - width) / 2;
		var yc = (ah - height) / 2;

    	str += ",left=" + xc + ",screenX=" + xc;
    	str += ",top=" + yc + ",screenY=" + yc;
  	}

  	return str;

}






// NAV
// Function to 'activate' images.
function imgOn(imgName) {
	
	if (document.images) {
	
		document[imgName].src = eval(imgName + "_on.src");
		
	}
	
}


// NAV
// Function to 'deactivate' images.
function imgOff(imgName) {

	if (document.images) {
	
		document[imgName].src = eval(imgName + ".src");
		
	}
	
}



// GOOGLE 

var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));

try {
var pageTracker = _gat._getTracker("UA-15965135-1");
pageTracker._trackPageview();
} catch(err) {}





