// JavaScript Document

/* 
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Title    : Global Style Sheet, Powershares ETNs
Author   : Vijay, e-Tech team
Verified : 
URL      : #

Description : Popup Window Striping Script

Created  : 15 April 2010
Modified : 15 April 2010

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
*/


	  $(document).ready(function() {
      $('table.striped tr:not([tr]):odd').addClass('odd')
      $('table.striped tr:not([tr]):even').addClass('even')
      });
	   
	   
      $(document).ready(function() {
      var classNames = {
      0: 'one',
      1: 'two',
      2: 'three'
      }
      $('table.striped tr td').not('[td]').each(function(index) {
		$(this).addClass(classNames[index % 3]) 
      })
      })


