/*
  -----------------------------------------------
  Site: Tropical Breeze Frozen Drinks
  Copyright 2007
  URI: www.tropicalbreeze.com
  Version: 1.0
  File: tbreeze.js
  
  ======== MAIN SCRIPTS =========
*/

var tabRows = function() {
	var g,i,x,gr, tb = 'info',cl = 'alt';
	if(document.getElementById){
		g = document.getElementsByTagName("TABLE");
 		for(x = 0; x <g.length; x++){
	 		if(g[x].className && g[x].className == tb){
 				gr = g[x].getElementsByTagName("TR");
				if(gr){
					for(i = 0;i < gr.length; i++){
 						if(i > 0){
							gr[i].onmouseover = function(){
		 						this.className = cl;
							};
							gr[i].onmouseout = function(){
								this.className = '';
							};
						}
					}
				}
			}
		}
	}
}
window.onload = tabRows;
 
 
 
 