$(document).ready(function() {
	$('table tr:odd').addClass('alt');
	$('table tr td:first').addClass('firstcol');
	$('div.box:odd').addClass('alt');
	$('a.arrow').append('&nbsp;&raquo;');
	$('a.back-arrow').prepend('&laquo;&nbsp;')
//	$('input#username').example('Username');
//	$('input#password').example('Password');
	$('input#firstlastname').example('First and last name');
	$('input#emailadd').example('email@example.com');
	$('input#phonenumber').example('(555) 555-5555');
	$('textarea#message').example("Tell us what you'd like to talk about.");
	$('div.tags li').addClass('notlast');
	$('div.tags li:last').removeClass('notlast');
	$('li.notlast').append(',');
	$('div#blogsearch input.prettysearch').decorateSearchInput();
	$('div#comments ol li:odd').addClass('alt');
	$('input#your-email').example('Your Email Address');
	$('input#your-name').example('Your Name');
	$('input#your-url').example('Your URL');
	$('div#respond textarea').example("Your Comment");
	$('div#footer-nav li:last').addClass('last');
	$('#footer #links .button a').jTip();
});