<!-- 
// check browser
var ns = (navigator.appName.toLowerCase().indexOf("netscape")!=-1)?1:0;
var ns6 = (document.getElementById && ns)?1:0;
var ie = (document.all) ? 1 : 0;

//if (ns && !ns6) document.write('<LINK rel=stylesheet type="text/css" href="keen_ns.css">');
//else document.write('<LINK rel=stylesheet type="text/css" href="keen.css">');

var contHeight;
var contHeight1;
var contHeight2;
var contWidth;
var contWidth1;
var footerHeight;
// START: fixing content height
function GetContentHeight(){
	if (ns6) {
		contHeight = window.innerHeight - 16;
		contHeight1 = window.innerHeight - 498;
		contHeight2 = window.innerHeight - 387;
		contHeightHome = window.innerHeight - 361;
		contHeightT = window.innerHeight - 59;
		contWidth = window.innerWidth - 322;
		contWidth1 = window.innerWidth - 339;
		contWidthHome = window.innerWidth - 769;
		contWidthT2 = window.innerWidth - 199;
	} else {
		contHeight = document.body.clientHeight - 4;
		contHeight1 = document.body.clientHeight- 478;
		contHeight2 = document.body.clientHeight - 400;
		contHeightHome = document.body.clientHeight - 361;
		contHeightT = document.body.clientHeight - 71;
		contWidth = document.body.clientWidth - 322;
		contWidth1 = document.body.clientWidth - 330;
		contWidthHome = document.body.clientWidth - 769;
		contWidthT2 = document.body.clientWidth - 186;
	}
}
// END: fixing content width

//array with OFF image:
var arrImagesOff = new Array(
"/images/home_off.gif",
"/images/whoweare_off.gif",
"/images/whatwedo_off.gif",
"/images/clients_off.gif",
"/images/brandinginfo_off.gif",
"/images/contactus_off.gif"
);

//array with ON image:
var arrImagesOn = new Array(
"/images/home_on.gif",
"/images/whoweare_on.gif",
"/images/whatwedo_on.gif",
"/images/clients_on.gif",
"/images/brandinginfo_on.gif",
"/images/contactus_on.gif"
);

var objImagesOn = new Array();
var objImagesOff = new Array();

Preload();

//Preload image in cache
function Preload(){
	// START: preload image
	for (var i=0; i<arrImagesOn.length; i++){
		objImagesOn[i] = new Image();
		objImagesOn[i].src = arrImagesOn[i];

		objImagesOff[i] = new Image();
		objImagesOff[i].src = arrImagesOff[i];
	}
	// END: preload image
} 

//function on - appeal on onmouseover
function On(mnuNo) {
	if (document.images) {
		var imgName = "mnu" + mnuNo;
		if(ns)document.images[imgName].src = objImagesOn[mnuNo].src;
		else document.images[imgName].src = objImagesOn[mnuNo].src;
	}
}

// function off - appeal on onmouseout
function Off(mnuNo) {
	if (document.images) {
		var imgName = "mnu" + mnuNo;
		if(ns) document.images[imgName].src = objImagesOff[mnuNo].src;
		else document.images[imgName].src = objImagesOff[mnuNo].src;
	}
}
/*var pageID;
var m = new String("");
var title = new Array("Keen Branding - Identity Builders");
var descriptions = new Array("Keen Branding is dedicated to helping our clients in all aspects of creating, building, growing and fully realizing the potential of their brand identities.");
var href = new Array("index.htm");
var keywords = new Array("Brand, branding, name, naming, graphic design, image, logo, logo design, graphic design, business name, brand management, company logo, business logo design, intellectual property, name change, corporate logo, identity, positioning, corporate identity, new products, international brand, experts, brand identity, marketing, graphic design studio, graphic design services, naming service, company brand, company, services, companies, firms, global, international, UK, Scotland, San Francisco, San Diego, Seattle, New York, consultant, internet, e, Chicago, Los Angeles, company, branding company, naming services, naming consulting, pharma, pharmaceutical, consumer, food, industrial, high tech, telecommunications, biotech, B2B, business to business, concept ideation, creative ideation, brand equity, retail, practice, group, vendor, consulting, on line, worldwide, international, global, pharmaceutical, pharmaceuticals, consumer, food, industrial, high tech, telecommunications, biotech, B2B, business to business, brand, equity, retail");
function metaTags(pageID){
	document.write("<meta NAME='D.C.title' CONTENT='" + title[pageID] + "'><META NAME='description' CONTENT='" + description[pageID] + "'><meta NAME='D.C.description' CONTENT='" + description[pageID] + "'><meta NAME='D.C.identifier' CONTENT='http://www.keenbranding.com/'" + href[pageID] + "'><meta NAME='revisit-after'><meta NAME='VW96.objecttype' CONTENT='Homepage'><meta NAME='ROBOTS' CONTENT='INDEX, FOLLOW, ALL'><meta HTTP-EQUIV='Content-language' CONTENT='en-US'><META HTTP-EQUIV='Content-Type' CONTENT='text/html; charset=iso-8859-1'><meta HTTP-EQUIV='expires' CONTENT='0'><meta NAME='distribution' CONTENT='global'><meta NAME='author' CONTENT='Copyright Keen Branding'><meta name='home' content='http://www.keenbranding.com'><META NAME='MSSmartTagsPreventParsing' CONTENT='TRUE'><META NAME='keywords' CONTENT='" + keywords[pageID] + ">");
}
*/
function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}

// START: fixing the page content for Netscape on resize >>>
FixNSWindow();

function FixNSWindow() {
	if (ns6 || ns && (parseInt(navigator.appVersion) == 4)) {
		if (typeof document.NS == 'undefined') document.NS = new Object;
		if (typeof document.NS.NS_scaleFont == 'undefined') {
			document.NS.FixCssInNS = new Object;
			document.NS.FixCssInNS.initWindowWidth = window.innerWidth;
			document.NS.FixCssInNS.initWindowHeight = window.innerHeight;
		}
		window.onresize = FixCssInNS;
	}
}

function FixCssInNS() {
	if (document.NS.FixCssInNS.initWindowWidth != window.innerWidth || document.NS.FixCssInNS.initWindowHeight != window.innerHeight) document.location = document.location;
}
// <<< END: fixing the page content for Netscape on resize


// START: fixing the page content for Macintosh IE on resize >>>
RegenerateIeMac();
function RegenerateIeMac(){
	window.onresize=Regenerate;
}
function Regenerate(){
	window.location.reload();
}
// <<< END: fixing the page content for Macintosh IE on resize

//-->
