$( function(){
	
	$('div#navigation ul li a').each(function(){
		if ($(this).attr('href') == targetURL) {
			$(this).addClass('selected');
		}
	});
	
	$('div.sb-mod:last').addClass('last');
	
	// Clear values from form fields
	$('input:text, input:password, textarea').focus(function(){
		if ($(this).val() == $(this).attr('title')) {
			$(this).val('');
		}
		$(this).blur(function(){
			if ($(this).val().length == 0) {
				$(this).val($(this).attr('title'));
			}
		});
	});
	
	$('div.newsletter_signup form input').eq(0).attr('title', 'Your Email Address');
	
});
