$(function() {

$(".overflowText").hide();

 }); 


$(function() {

$("table.dataTable tr:nth-child(odd)").addClass("striped");

$("table.dataTable th").addClass("dark");
 });


$(function() {

	$("table.dataTable2 tr:nth-child(even)").addClass("striped");

	 });

 
$(function() { 
	$("a#moreText")
	.click(function(event){
     	event.preventDefault();
    	$(".overflowText").show('slow');
    	$("a#moreText").hide();
	})


	
	$("a#lessText")
	.click(function(event){
     	event.preventDefault();
    	$(".overflowText").hide('slow');
    	$("a#moreText").show();
	})


 }); 

