$(document).ready(function() {	
	
	//CSS3 pseudo style ":last-child" is not valid CSS2.1 so apply styling/classes here
	$(".button:last").css({marginLeft:"10px"});	//Contact form
	$("#footer ul li:last").addClass("lastLI");

});