<!-- // hide this script from non-javascript-enabled browsers

// --------------------------------------------------------
// -----  COPYRIGHT NOTICE                            -----
// -----  © Copyright 1995-2009 ZEI.  -----
// -----  All rights reserved.                        -----
// --------------------------------------------------------

// *********************************************
// * Display Date
// *********************************************

function displayDate_Day(){
	var now = new Date();
	var curr_day = now.getDate();

	document.write(curr_day);
}

function displayDate_Month(){
	var months = new Array("January", "February", "March", 
	"April", "May", "June", "July", "August", "September", 
	"October", "November", "December");
	
	var now = new Date();
	var curr_month = now.getMonth();
	
	document.write(months[curr_month]);
}

function displayDate_Year(){
	var now = new Date();
	var curr_year = now.getFullYear();
	
	document.write(curr_year);
}

// *********************************************
// * Set Tallest Div Height
// *********************************************

function setDivHeightsMenu(){

	var id_1 = document.getElementById("page_layout_content");
	var id_2 = document.getElementById("page_layout_menu");
	
	if((id_1.offsetHeight) > id_2.offsetHeight) {
		id_2.style.height = (id_1.offsetHeight - 2)+"px"; }

}

function setDivHeightsProduct(div1, div2){

	var id_1 = document.getElementById(div1);
	var id_2 = document.getElementById(div2);
	
	if((id_1.offsetHeight) > id_2.offsetHeight) {
		id_2.style.height = (id_1.offsetHeight - 2)+"px";}
	else {
	 	id_1.style.height = (id_2.offsetHeight - 2)+"px";}
}

function setDivHeightsAll(div1, div2){
	setDivHeightsMenu();
	setDivHeightsProduct(div1, div2);
}

// end hiding-->
