/***
 * Javascript code to support http://www.zeromtn.com
 * Last updated: 19 Jan, 2010
 * Coded by: Randy Watts
 * Contact Info:
 *      E-mail randywatts@zeromtn.com
 *      Phone 479.646.7757
 ***/
$(window).load(function() {
	jQuery.preloadImages = function(){
	  for(var i = 0; i<arguments.length; i++){
	    jQuery("<img>").attr("src", arguments[i]);
	  };
	};
		
	$.preloadImages("images/zmi_scene_tm.jpg",
	"images/zmi_old_cave1.png",
	
	"images/zmi_logo.png",
	"images/faye/map_faye.gif",
	"images/faye/zero_1.gif",
	"images/faye/zero_2.gif",
	"images/faye/zero_3.gif",
	
	"images/ftsm/map_ftsm.gif",
	"images/ftsm/ftsm_1.gif",
	"images/ftsm/ftsm_2.gif",
	"images/ftsm/ftsm_3.gif",
	"images/ftsm/ftsm_4.gif",
	"images/ftsm/ftsm_9.gif",
	
	"images/lowl/map_lowl.gif",
	"images/lowl/lowl_1.gif",
	"images/lowl/lowl_2.gif",
	"images/lowl/lowl_9.gif",
	
	"images/russ/map_russ.gif",
	"images/russ/russ_1.gif",
	"images/russ/russ_2.gif",
	"images/russ/russ_3.gif",
	"images/russ/russ_4.gif",
	"images/russ/russ_5.gif",
	"images/russ/russ_6.gif",
	"images/russ/russ_9.gif",
	
	"images/blue_stripe_bg.png");
});
 
$(document).ready(function(){
	
//====================================================================
/*
	var myTimer = {};
	
	$(function () {
		console.log('here');
		myTimer = $.timer(2000,function(){
	    	alert('A Delayed Hello!');
		});
	});

	$('#cancel').click(function(){
		$.clearTimer(myTimer);
	});
*/
//====================================================================
	$(".mark_container").hover(
		function(){
			var picName = $(this).find("img").attr("id");
			

			switch(picName){
				case "img1":
					$(picName).attr("title", picName);
					document.getElementById("mark_txt").innerHTML='<p><span class="zmi">Zero Mountain</span> consistently achieves the highest ratings available from the Independent American Sanitation Institute and all 4 locations are ID certified by the U.S.D.A. Our excellent record assures customers that product is always kept clean and quality is kept high.</p>';
						$("#mark_txt").addClass('about-each');	
					break;
				case "img2":
					$(picName).attr("title", picName);
					document.getElementById("mark_txt").innerHTML='<p><span class="zmi">Zero Mountain</span> facilities are able to respond to the most sophisticated distribution needs. Customer product is moved in and out of our facilities more efficiently than anywhere in the industry. Our computer response system and trained personnel work directly with customers who need on-line communications and system-to-system compatibility.</p>';
						$("#mark_txt").addClass('about-each');	
					break;
				case "img3":
					$(picName).attr("title", picName);
					document.getElementById("mark_txt").innerHTML='<p>Temperature control is maintained within one degree Fahrenheit of required temperature year round. Blast freezing and exporting services reduce food temperature from +40&deg; F to 0&deg; F in 48 hours. More than 30 million cubic feet of below 0 F storage is available in 4 locations.</p>';
						$("#mark_txt").addClass('about-each');	
					break;
				case "img4":
					$(picName).attr("title", picName);
					document.getElementById("mark_txt").innerHTML='<p>Customers know that when product is stored at <span class="zmi">Zero Mountain</span> it can be retrieved when needed without loss. Completely wireless on-site computerized controls from receiving to-warehousing-to-shipping results in 99.95% accurate inventory management.</p>';
						$("#mark_txt").addClass('about-each');	
					break;
				case "img5":
					$(picName).attr("title", picName);
					document.getElementById("mark_txt").innerHTML='<p>Facilities can load and unload as many as one hundred and forty trucks a day, frequently turning loads around in two hours or less. <span class="zmi">Zero Mountain</span> provides fast and accurate loading and unloading operations on low temperature docks. <span class="zmi">Zero Mountain</span> facilities are always ready for trucks to arrive for pick-up or delivery of product.</p>';
						$("#mark_txt").addClass('about-each');	
					break;
				case "defaultTxt":
					$(picName).attr("title", picName);
					document.getElementById("mark_txt").innerHTML='<p>From the outset, <span class="zmi">Zero Mountain</span> focused on superior performance in every area of its operation including quality and safety procedures to tracking and shipping systems. This has led to the company occupying a strategic position in the growth and development of the frozen food industry including blast or quick-freezing which can reduce food temperature from +40&deg; F to 0&deg; F in 48 hours. Currently, <span class="zmi">zero mountain</span> freezes, stores, and ships an estimated two billion pounds of frozen food and meat annually for the numerous Fortune 500 companies.</p>';
						$("#mark_txt").addClass('about-each');
						break;
				}
		}, 
		function(){
			document.getElementById("mark_txt").innerHTML='<p>From the outset, <span class="zmi">Zero Mountain</span> focused on superior performance in every area of its operation including quality and safety procedures to tracking and shipping systems. This has led to the company occupying a strategic position in the growth and development of the frozen food industry including blast or quick-freezing which can reduce food temperature from +40&deg; F to 0&deg; F in 48 hours. Currently, <span class="zmi">zero mountain</span> freezes, stores, and ships an estimated two billion pounds of frozen food and meat annually for the numerous Fortune 500 companies.</p>';
				$("#mark_txt").addClass('about-each');
		}
  	);

});