// JavaScript Document

var imageDescriptionArray = new Array();




imageDescriptionArray[0] = '<p><strong>Mulia Café, Jakarta,</strong> <span class="name">Entrance</span>: At the Mulia Café, the design was redefined from that of a typical hotel coffee shop into a fresh, exciting and unique restaurant concept that incorporated multiple cuisines and kitchens, lifestyle elements and private dining venues unlike any all day dining in the region.    </p><p><a href="../../gallery.php">&lt; Back to Listings</a></p>';


imageDescriptionArray[1] = '<p><strong>Mulia Café, Jakarta,</strong> <span class="name">Lifestyle Cafe</span>: In this lounge atmosphere, a sophisticated design was positioned to reveal a sense of prestige and opulence.  A white elliptical ceiling envelops the entire space, while classically inspired furniture portrays a modern yet comfortable feel. </p><p><a href="../../gallery.php">&lt; Back to Listings</a></p>';
		  

imageDescriptionArray[2] = '<p><strong>Mulia Café, Jakarta,</strong> <span class="name">Private Dining</span>: Private dining is enjoyed within this striking atmosphere.  Textural silver metals line the walls, while chairs are upholstered in a rich exotic snakeskin. </p><p><a href="../../gallery.php">&lt; Back to Listings</a></p>';


imageDescriptionArray[3] = '<p><strong>Mulia Café, Jakarta,</strong> <span class="name">Asian Kitchen</span>: Subtle hues of copper, silver and gold were incorporated to depict the rich and bold characteristics of the Asian culture at the Southeast Asian Counter.   </p><p><a href="../../gallery.php">&lt; Back to Listings</a></p>';

	  		  

imageDescriptionArray[4] = '<p><strong>Mulia Café, Jakarta,</strong> <span class="name">Japanese Buffet</span>: Inspired by the beauty of traditional Japanese garden design, the Japanese buffet features a patterned screen with Sakura flower motifs.  The central focus is an inverted cone that resembles a fountain of flowing flowers that covers the entire ceiling area.   </p><p><a href="../../gallery.php">&lt; Back to Listings</a></p>';


imageDescriptionArray[5] = '<p><strong>Mulia Café, Jakarta,</strong> <span class="name">The Deli</span>: The Deli counter is accented with hues of blue and white, introducing a wavy, rippled ceiling throughout the entire space.  The light shining through the ripples casts shadows across the restaurant mimicking an aquatic envelope. </p><p><a href="../../gallery.php">&lt; Back to Listings</a></p>';


function preloadImages() 

{ 

	//check if there are some images in the HTML page only then preload the new images

	if(document.images)

	{

		if(!document.p) 

		{

			document.p=new Array();

		}	

			

		var i,j=document.p.length,a=preloadImages.arguments; 

		for(i=0; i<a.length; i++)

		{

			if (a[i].indexOf("#")!=0)

			{ 

				document.p[j]=new Image; 

				document.p[j++].src=a[i];

			}

		}	

	}

}



function changeImages(elementID, newImageSrc, pos)

{

	if(document.getElementById(elementID))

	{

		document.getElementById(elementID).src = newImageSrc;

	}

	document.getElementById('content').innerHTML = imageDescriptionArray[pos];

	

}
