var theImages = new Array()

//Random-loading images
theImages[0] = 'images/packshots/pb-pack.jpg' // replace with names of images
theImages[1] = 'images/packshots/chhole-pack.jpg' // replace with names of images
theImages[2] = 'images/packshots/tikhalal.jpg' // replace with names of images
theImages[3] = 'images/packshots/gm-pack.jpg' // replace with names of images
theImages[4] = 'images/packshots/chaat-pack.jpg' // replace with names of images

var j = 0
var p = theImages.length;
var preBuffer = new Array()

for (i = 0; i < p; i++){
preBuffer[i] = new Image()
preBuffer[i].src = theImages[i]
}
var whichImage = Math.round(Math.random()*(p-1));

function showImage(){
if(whichImage==0){
document.write('<a href ="masalas/pavbhaji-masala"><img class="masala-image" src="'+theImages[whichImage]+'" border="0" width="71" height="139" alt="Pav bhaji" /><span class="masala-desc"><b>Pav bhaji</b><br />Pav bhaji masala is the blend that took Mumbai by storm.</span></a>');
}
else if(whichImage==1){
document.write('<a href ="masalas/chhole-masala"><img class="masala-image" src="'+theImages[whichImage]+'" border="0" width="71" height="139" alt="Chhole Masala" /><span class="masala-desc"><b>Chhole Masala</b><br />An exquisite blend of 24 pure spices, this is perhaps the most elaborate blend in the <strong>EVEREST</strong> repertoire.</span></a>');
}
else if(whichImage==2){
document.write('<a href ="masalas/tikhalal"><img class="masala-image" src="'+theImages[whichImage]+'" border="0"  width="71" height="139" alt="Tikhalal" /><span class="masala-desc"><b>Tikhalal</b><br />A fine-ground chilli powder that is a perfect blend of colour and pungency.</span></a>');
}
else if(whichImage==3){
document.write('<a href ="masalas/garam-masala"><img class="masala-image" src="'+theImages[whichImage]+'" border="0"  width="71" height="139" alt="Garam Masala" /><span class="masala-desc"><b>Garam Masala</b><br />This red chilli based blend is the grand old universal taste enhancer.</span></a>');
}
else if(whichImage==4){
document.write('<a href ="masalas/chaat-masala"><img class="masala-image" src="'+theImages[whichImage]+'" border="0"  width="71" height="139" alt="Chaat Masala" /><span class="masala-desc"><b>Chaat Masala</b><br />Chaat is a racy blend that gives a wild and lively tweak to the well worn taste of Salads, Sandwiches, Fresh fruits, Finger chips, Snacks, Sprouted beans.</span></a>');
}

}


var Images = new Array()

//Random-loading images
Images[0] = 'images/home-jaljira-image.jpg' // replace with names of images
Images[1] = 'images/home-mattarpaneer-image.jpg' // replace with names of images
Images[2] = 'images/home-panipuri-image.jpg' // replace with names of images
Images[3] = 'images/home-rasam-image.jpg' // replace with names of images
Images[4] = 'images/home-chhole-image.jpg' // replace with names of images

var j = 0
var p = Images.length;
var preBuffer = new Array()

for (i = 0; i < p; i++){
preBuffer[i] = new Image()
preBuffer[i].src = Images[i]
}
var whichImage = Math.round(Math.random()*(p-1));

function showRecipe(){
if(whichImage==0){
document.write('<a href ="masalas/jaljira-powder"><img class="recipe-image" src="'+Images[whichImage]+'" border="0" width="71" height="139" alt="Panipuri" /><span class="recipe-desc"><b>Jaljira</b><br />At any Indian feast, Jaljira is a favourite welcome drink, and a natural choice after meals.</span></a>');
}
else if(whichImage==1){
document.write('<a href ="recipes/paneer-mattar"><img class="recipe-image" src="'+Images[whichImage]+'" border="0" width="71" height="139" alt="Paneer Mattar" /><span class="recipe-desc"><b>Paneer Mattar</b><br />Perfect taste of fresh spices.</span></a>');
}
else if(whichImage==2){
document.write('<a href ="recipes/pani-puri"><img class="recipe-image" src="'+Images[whichImage]+'" border="0" width="71" height="139" alt="Panipuri" /><span class="recipe-desc"><b>Panipuri</b><br />Panipuriwala at home!</span></a>');
}
else if(whichImage==3){
document.write('<a href ="recipes/tomato-rasam"><img class="recipe-image" src="'+Images[whichImage]+'" border="0" width="71" height="139" alt="Tomato Rasam" /><span class="recipe-desc"><b>Tomato Rasam</b><br />Authentic taste!</span></a>');
}
else if(whichImage==4){
document.write('<a href ="recipes/chhole"><img class="recipe-image" src="'+Images[whichImage]+'" border="0" width="71" height="139" alt="Chhole" /><span class="recipe-desc"><b>Chhole</b><br />With the authentic flavour!</span></a>');
}

}
