var menu0 = new Array()
	menu0[0] = '<a href="index.php?c=aboutus">&nbsp;&nbsp;ItCoRex Team</a>'
	menu0[1] = '<a href="index.php?c=channel1">&nbsp;&nbsp;ItCoRex Channel 1</a>'
	menu0[2] = '<a href="index.php?c=channel2">&nbsp;&nbsp;ItCoRex Channel 2</a>'
	menu0[3] = '<a href="index.php?c=channel3">&nbsp;&nbsp;ItCoRex Channel 3</a>'



var menu1 = new Array()
	menu1[0] = '<a href="index.php?c=phpwebsite">&nbsp;&nbsp;ItCoRex Sell Website</a>'
	menu1[1] = '<a href="index.php?c=script">&nbsp;&nbsp;ItCoRex Sell Script</a>'
	menu1[2] = '<a href="adsenserevenue" target="_blank">&nbsp;&nbsp;ItCoRex Sell E-Book</a>'
	menu1[3] = '<a href="index.php?c=banner">&nbsp;&nbsp;ItCoRex Sell Banner</a>'
	


var menu2 = new Array()
	menu2[0] = '<a href="index.php?c=chatroom">&nbsp;&nbsp;ItCoRex Chatroom</a>'
	











function calcTime(offset) {
	 //GMT = 0, Canada=-6

    // create Date object for current location
    d = new Date();
    
    // convert to msec
    // add local time zone offset 
    // get UTC time in msec
    utc = d.getTime() + (d.getTimezoneOffset() * 60000);
    
    // create new Date object for different city
    // using supplied offset
    nd = new Date(utc + (3600000*offset));
    
    // return time as a string
    return nd.toLocaleString();
}