/*     
 *     RDV JAVASCRIPT
 *     -----------------------------------------------
 *      Content
 *     -----------------------------------------------
 *
 *     1. User Interface
 *       1.1 Zebra Table
 * 
 */    
	  /*
     --------------------
     2. User Interface
     --------------------
     */
	 
$(document).ready(function(){
	
/* --- 1.1 Zebra Table --- */
	
   if ($('table').length >= 1) {
	    $("table.data tr:nth-child(2n)").addClass("highlight");
	}

});

