<!-- Hide from old browsers

	if (document.images) {
		navhome_cool = new Image
		navchocolates_cool = new Image
		navcorporate_cool = new Image
		navwholesale_cool = new Image
		navabout_cool = new Image
		navcontact_cool = new Image
		
		navhome_cool.src = "images/nav/navhome_cool.gif"
		navchocolates_cool.src = "images/nav/navchocolates_cool.gif"
		navcorporate_cool.src = "images/nav/navcorporate_cool.gif"
		navwholesale_cool.src = "images/nav/navwholesale_cool.gif"
		navabout_cool.src = "images/nav/navabout_cool.gif"
		navcontact_cool.src = "images/nav/navcontact_cool.gif"
		
		navhome_hot = new Image
		navchocolates_hot = new Image
		navcorporate_hot = new Image
		navwholesale_hot = new Image
		navabout_hot = new Image
		navcontact_hot = new Image
		
		navhome_hot.src = "images/nav/navhome_hot.gif"
		navchocolates_hot.src = "images/nav/navchocolates_hot.gif"
		navcorporate_hot.src = "images/nav/navcorporate_hot.gif"
		navwholesale_hot.src = "images/nav/navwholesale_hot.gif"
		navabout_hot.src = "images/nav/navabout_hot.gif"
		navcontact_hot.src = "images/nav/navcontact_hot.gif"
		
	}
	
	function chgImg(imgField, newImg) {
		if (document.images) {
		document[imgField].src= eval(newImg + ".src")
		}
	}
	
	// (C) 2000 www.CodeLifter.com
	// http://www.codelifter.com
	// Free for all users, but leave in this  header
	// NS4-6,IE4-6
	// Fade effect only in IE; degrades gracefully
	
	// =======================================
	// set the following variables
	// =======================================
	
	// ImageAShow
	
	// Set ImageAShowSpeed (milliseconds)
	var ImageAShowSpeed = 7000
	
	// Duration of crossfade (seconds)
	var crossFadeDuration = 3
	
	// Specify the image files
	var PicA = new Array() // don't touch this
	// to add more images, just continue
	// the pattern, adding to the array below
	
	PicA[0] = 'images/home/home_array1.jpg'
	PicA[1] = 'images/home/home_array2.jpg'
	PicA[2] = 'images/home/home_array3.jpg'
	PicA[3] = 'images/home/home_array4.jpg'
	PicA[4] = 'images/home/home_array5.jpg'
	
	// =======================================
	// do not edit anything below this line
	// =======================================
	
	var t
	var j = 0
	var p = PicA.length
	
	var preLoadA = new Array()
	for (i = 0; i < p; i++){
	   preLoadA[i] = new Image()
	   preLoadA[i].src = PicA[i]
	}
	
	function runImageAShow(){
	   if (document.all){
	      document.images.ImageAShow.style.filter="blendTrans(duration=5)"
	      document.images.ImageAShow.style.filter="blendTrans(duration=crossFadeDuration)"
	      document.images.ImageAShow.filters.blendTrans.Apply()      
	   }
	   document.images.ImageAShow.src = preLoadA[j].src
	   if (document.all){
	      document.images.ImageAShow.filters.blendTrans.Play()
	   }
	   j = j + 1
	   if (j > (p-1)) j=0
	   t = setTimeout('runImageAShow()', ImageAShowSpeed)
	}
	
	
	
	function openAnyWindow(url, name) {
	  var l = openAnyWindow.arguments.length;
	  var w = "";
	  var h = "";
	  var features = "";
	
	  for (i=2; i<l; i++) {
	    var param = openAnyWindow.arguments[i];
	    if ( (parseInt(param) == 0) ||
	      (isNaN(parseInt(param))) ) {
	      features += param + ',';
	    } else {
	      (w == "") ? w = "width=" + param + "," :
	        h = "height=" + param;
	    }
	  }
	
	  features += w + h;
	  var code = "popupWin = window.open(url, name";
	  if (l > 2) code += ", '" + features;
	  code += "')";
	  eval(code);
	}




//End hiding from old browsers-->

//Hide status bar msg script- by javascriptkit.com
//Visit JavaScript Kit (http://javascriptkit.com) for script
//Credit must stay intact for use

//configure status message to show
var statusmsg=""

function hidestatus(){
window.status=statusmsg
return true
}
