﻿
(function () {
	var $ = jQuery;

	$(document).ready(function () {
		setupSearchBox();

		$('.page-copy table tbody tr:nth-child(2n+1)').addClass('highlight');
	});

	function setupSearchBox() {
		var searchBox = $('.search .input_text');

		searchBox.focus(function () {
			// only select if the text has not changed
			if (searchBox.value == searchBox.defaultValue) {
				searchBox.select();
			}
		});

	}
})();
