// (c) 1999-2008 Bright Interactive Limited. All rights reserved.
// http://www.bright-interactive.com | info@bright-interactive.com
// Tel: 0870 240 6520
// Author: Ben Browning d1, 18June09

// When the page is ready, search for any tables with the class 'table_style_a' 
// and give every even tr the class 'stripe' 
jQuery(document).ready(function(){
   $(".table_style_a tr:even").addClass("stripe");
});	
