// JavaScript Document
function returnDate() {
	var dteNow = new Date();
	var szMonthName = new Array('January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December');
		
	return szMonthName[dteNow.getMonth()] + ' ' + dteNow.getDate() + ', ' + dteNow.getFullYear();
}
function btnMouseOver(obj) {
	obj.style.backgroundColor = "#AAAAAA";
}
function btnMouseOut(obj) {
	obj.style.backgroundColor = "#9A9A9B";
}
function openPage(page) {
	window.location.href=page;
}
function DisplayServices(type) {
	var szTitle, szContent;
	
	switch(type) {
		case 0:
			szTitle = '<span id="svcTitle">SIP</span>';
			szContent = '<span id="svcContent">We will have the VOIP Call service at the flat rate plans that you will love it. Get back to us soon.</span>';
			break;
		case 1:
			szTitle = '<span id="svcTitle">SMS</span>';
			szContent = '<span id="svcContent"><ul><li>Marketing</li><li>Customer Relationship Management</li><li>Campaign</li><li>Premium</li><li>Mobile Content</li></ul></span>';
			break;
		case 2:
			szTitle = '<span id="svcTitle">WEB</span>';
			szContent = '<span id="svcContent">Web design, logo design, and even corporate identity development are keys of business identity in 21st century. We provide full range of design works that suits your business need. <ul><li>Design</li><li>Advertising</li><li>Content Management System</li><li>Marketing</li><li>Portal Strategies</li><li>Maintenance</li><li>Newsletter</li><li>Application</li></ul></span>';
			break;
		case 3:
			szTitle = '<span id="svcTitle">Web &amp; Email Hosting</span>';
			szContent = '<span id="svcContent">ACROGAIN hosting services provides you the quality and reliable hosting services to ensure the uptime and performance. <BR> Your website and email are well managed by a team of experience professionals that enable your focus of building the business without worry and hassle.</span>';
			break;
		case 4:
			szTitle = '<span id="svcTitle">Visual Communication</span>';
			szContent = '<span id="svcContent"><ul><li>Design</li><li>Branding</li><li>Content Development</li><li>Campaign Management</li><li>Customer Relationship</li><li>Creative Concept</li></ul></span>';
			break;
		case 5:
			szTitle = '<span id="svcTitle">Consultation</span>';
			szContent = '<span id="svcContent">Our professionals collaborate with forward-thinking organization to create low-cost, high-value solutions for the entire enterprise.</span>';
			break;
	}
	
	document.getElementById('content').innerHTML = szTitle + '<br>' + szContent;
}
function DisplayImg() {
	var dteSec = new Date();
	var iRnd = dteSec.getSeconds() % 3;
	var sImg, bImg;
	
	switch (iRnd) {
		case 0:
			sImg = './images/KLCC_cloud_s.jpg';
			bImg = './images/KLCC_cloud_b.jpg';
			break;
		case 1:
			sImg = './images/KLCC_dawn_s.jpg';
			bImg = './images/KLCC_dawn_b.jpg';
			break;
		case 2:
			sImg = './images/KLCC_day_s.jpg';
			bImg = './images/KLCC_day_b.jpg';
			break;
	}
	document.getElementById('smallImg').style.backgroundImage = "url('" + sImg + "')";
	document.getElementById('bigImg').style.backgroundImage = "url('" + bImg + "')";
}
