/* javascript functionality for left nav */
function changeFlashCopy(pos) {
	var flashCopy=new Array();
	flashCopy[0] = "";
	flashCopy[1] = '<a href="http://www.informshop.com/index.php/catalogsearch/result/?q=Herman+Miller" class="arrowed">Eames Lounge Chair + Ottoman, 1956</a> | <a href="http://www.informshop.com/index.php/catalogsearch/result/?q=Herman+Miller">View All Products by Herman Miller</a>';	
	flashCopy[2] = '<a href="http://www.informshop.com/index.php/catalogsearch/result/?q=BENSEN" class="arrowed">Homework Desk, 2009</a> | <a href="http://www.informshop.com/index.php/catalogsearch/result/?q=BENSEN">View All Products by BENSEN</a>';
	flashCopy[3] = '<a href="http://www.informshop.com/index.php/catalogsearch/result/?q=Campana" class="arrowed">Campana</a> | <a href="http://www.informshop.com/index.php/catalogsearch/result/?q=Campana">View All Products by Fernando & Humberto Campana</a>';
	flashCopy[4] = '<a href="http://www.informshop.com/index.php/catalogsearch/result/?q=Harter" class="arrowed">Otis, 2009</a> | <a href="http://www.informshop.com/index.php/catalogsearch/result/?q=Harter">View All Products by Harter</a>';
	flashCopy[5] = '<a href="http://www.informshop.com/index.php/accessories.html" class="arrowed">Accessories at Inform Interiors</a> | <a href="http://www.informshop.com/index.php/accessories.html">View All Accessories</a>';
	//$("#flashCopy").html(flashCopy[pos]);
	document.getElementById('flashCopy').innerHTML = flashCopy[pos];
}

function goToProduct(pos) {
	var flashLink=new Array();
	flashLink[0] = "";
	
	flashLink[1] = 'http://www.informshop.com/index.php/catalogsearch/result/?q=Herman+Miller';	
	flashLink[2] = 'http://www.informshop.com/index.php/catalogsearch/result/?q=BENSEN';
	flashLink[3] = 'http://www.informshop.com/index.php/catalogsearch/result/?q=Campana';
	flashLink[4] = 'http://www.informshop.com/index.php/catalogsearch/result/?q=Harter';
	flashLink[5] = 'http://www.informshop.com/index.php/accessories.html';
	
	document.location = flashLink[pos];
}

function logoBarResize() {
	var myHeight = 0;
	if (typeof( window.innerWidth ) == 'number' ) { myHeight = window.innerHeight; }
	else if (document.documentElement && ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) {
		myHeight = document.documentElement.clientHeight;
	}
	var pageDiv = document.getElementById('content');
	var pageDivHeight = 0;
	var logoBarDiv = document.getElementById('logo_bar');
	var logoBarDivHeight = 0;
	if (pageDiv.offsetHeight) {
	    pageDivHeight=pageDiv.offsetHeight;
    } else if (pageDiv.style.pixelHeight) {
         pageDivHeight=pageDiv.style.pixelHeight;
    }
	if (logoBarDiv.offsetHeight) {
	    logoBarDivHeight=logoBarDiv.offsetHeight;
    } else if (logoBarDiv.style.pixelHeight) {
         logoBarDivHeight=logoBarDiv.style.pixelHeight;
    }

	if (logoBarDivHeight < pageDivHeight) {
		logoBarDiv.style.height = pageDivHeight + 'px';
		
		/* wrapper height */
		var wrapperDiv = document.getElementById('wrapper');
		wrapperDiv.style.height = pageDivHeight + 'px';		
		
	}
}

