$(document).ready(function(){
	$('.expander').click(function(e) {
		e.preventDefault();

		$('#' + $(this).attr('rel') + '-example').toggle();
		$('#' + $(this).attr('rel') + '-get').toggle();
		$('#' + $(this).attr('rel') + '-holder').toggleClass('holder-bg');
	});

	$('textarea').focus(function() {
		$(this).select();
	});
	$('textarea').click(function() {
		$(this).select();
	});
});