/* Le Force. Maillist.js. Stephen Chai */
$(document).ready(function(){
	// replace the submit button on the subscribe page with an image
	$("input[name='subscribe']").replaceWith('<p class="fBtns" style="text-align: center; padding-top: 1em;"><input type="image" src="/img/layout/bSubmit.gif" alt="Submit" name="subscribe" value="Join" onclick="return checkform();" /></p>');
	// replace <b> header on unscubscribe page
	$("b").replaceWith('<h2>Le Force Mailing List: Unsubscribe</h2>');
	// add class to label text, change text
	$("td:contains('Please enter a valid email address')").html("Email").addClass("phplistlabel");
	// add a class to the unsubscribe input, set size attribute to 39
	$("input[name='unsubscribeemail']").addClass("phplistinput").attr("size", "30");
	// replace the submit button on the unsubscribe page with an image
	$("input[name='unsubscribe']").replaceWith('<p class="fBtns" style="text-align: center; padding-top: 1em;"><input type="image" src="/img/layout/bSubmit.gif" alt="Submit" name="unsubscribe" value="Continue" /></p>');
});