<!--
$(document).ready(function(){

$('.col td').mouseover(function(){
	$(this).addClass('bg');
	return false;
	});

$('.col td').mouseout(function(){
	$(this).removeClass('bg');
	return false;
	});


$("#copyCode").focus(function(){
    // Select input field contents
    this.select();
});

$("#copyCode").click(function(){
    // Select input field contents
    this.select();
});


// $('#copyCode').focus().select();

});
-->
