$(document).ready(function() { 

 var lastHighlight = null;

 $('.tableclick' ).click(function() { 

if (lastHighlight!=null)
	lastHighlight.parent().parent().removeClass('highlight');

lastHighlight = $(this);

$(this).parent().parent().addClass('highlight');



 });
 

});

$.clipboardReady(function(){
	$( "a" ).click(function(){
	$.clipboard( "You clicked on a link and copied this text!" );
	return false;
	});
}, { swfpath: "path/to/jquery.clipboard.swf", debug: true } );

