//All scripts unless specified are copyright Poweraxis 2009 - www.poweraxis.com

function doVoid()
{
}

var ideaPelletLong = new Array();

ideaPelletLong[0]="";
ideaPelletLong[1]="The spirit of adventure aggrandizes life.";
ideaPelletLong[2]="The basis of the future lies in the past.";
ideaPelletLong[3]="One in a million, exotic by far.";
ideaPelletLong[4]="A good story far outlives its time period.";
ideaPelletLong[5]="Indelible marks of ambition and pride.";
ideaPelletLong[6]="Nature inspires, draws your attention, moves you.";
ideaPelletLong[7]="Rudimentary and basic, classic but yet so evolved.";
ideaPelletLong[8]="The extraordinary balances the ordinary.";


var ideaPelletShort = new Array();

ideaPelletShort[0]="";
ideaPelletShort[1]="Advance.";
ideaPelletShort[2]="Revisit.";
ideaPelletShort[3]="Express.";
ideaPelletShort[4]="Narrate.";
ideaPelletShort[5]="Impress.";
ideaPelletShort[6]="Stimulate.";
ideaPelletShort[7]="Package.";
ideaPelletShort[8]="Unravel.";

invitationArea=new Array();
invitationArea[0]="";
invitationArea[1]="Every business needs to advance to remain profitable. Along with strategic measures and well-thought of policies, there is also the important need of communicating this concept of growth, both within the organization as well as to the outside world. And it is best done by carefully evaluating both the market and the changing behavior of consumers.";
invitationArea[2]="Old principles of marketing get outmoded in favour of new ones. Yet, time and again we are forced to look back at the basics. Technology is merely a facilitator and not a sales generator. More often than not, time-tested principles work best in the interest of your objectives.";
invitationArea[3]="There is nothing more beautiful than the sense of achievement. But even more beautiful is how this achievement is presented- sometimes understated, sometimes humbly, and yet sometimes by shouting from rooftops. Nevertheless, it must exhibit a sense of pride, come across as a class apart, be one in a million.";
invitationArea[4]="There are times when all that one can afford is to rest on one's laurels. Reinforcement of values and an image built over the years can at times outweigh the need for employing a cliched marketing gimmick. As a species constantly evolving, we like reading about stories, characters and events. A rivetting narrative always finds an audience.";
invitationArea[5]="A promise, a committment, an undeniable record of strength, solidarity &amp; achievement, never goes unnoticed. Not everyone makes a statement, a bold one. A monumental contribution will always stay in memory. For a brand, nothing can be more valuable than what cannot be emulated and outdone by others. If it's big, let the world know.";
invitationArea[6]="The best hideaways in the world tap into spirituality and oneness of soul. And they rejuvenate the mind and body, bringing every dormant cell back to life and good health. Your communication can do the same to a sagging image and market outlook.";
invitationArea[7]="After a while, even modern gets mundane. Archaic can be beautiful. An old world charm has no par. What is important though, is how it is presented- inviting, engaging and with enough warmth. Stones, rock, clay instead of metal, paint and plastic. Your communication can take the same route.";
invitationArea[8]="A dull run, a gloomy business outlook; but the dedicated never stop at inventing. Soon seeds of relentless efforts of the past bear fruit. And just one extraordinary feat can bring about overwhelming change. The chance to outshine is now.";



function doIdeaPellets()
{
	var ideaPelletNumber=Math.floor(Math.random()*9);
	if(ideaPelletNumber==0)
	ideaPelletNumber++;
	document.writeln("<p style='text-align:left'>" + ideaPelletLong[ideaPelletNumber] + "</p>");
	document.getElementById("homeRotate").src="./siteimages/pelletbank/home_" + ideaPelletNumber + ".jpg";
	//alert(ideaPelletNumber);
	var zzz=setTimeout("(executePelletShort(" + ideaPelletNumber + "))",200);
	var zzz=setTimeout("(executeInvitationArea(" + ideaPelletNumber + "))",2000);
}

function executePelletShort(ideaPelletNumber)
{
	//alert(ideaPelletNumber);
	document.getElementById('pelletShortDisplay').innerHTML="&quot;" + ideaPelletShort[ideaPelletNumber] + "&quot;";
}

function executeInvitationArea(ideaPelletNumber)
{
	document.getElementById('invitationArea').innerHTML=invitationArea[ideaPelletNumber] + "<br><br>Find out how POWERAXIS can help you achieve this -&nbsp;<a href='home.html' style='text-decoration:none; color:#ff0000; font-weight:bold'>enter the website</a>";
}