$(document).ready(function(){
	$('textarea').focus(function() {
		$(this).select();
	});
	$('textarea').click(function() {
		$(this).select();
	});
    $('.expand-button').click(function(e) {
        e.preventDefault();
        
        $('#' + $(this).attr('rel') + '-code').slideDown(300);
    });
});
