$(document).ready(function() {

	// Highlight input parent fieldset on focus
	$('input, select').focus(function() {
		$(this).parents().filter('.fieldset').addClass('focus');
	}).blur(function() {
		$(this).parents().filter('.fieldset').removeClass('focus');
	});
	
	$('.content :last-child').css('margin-bottom', '0');

});
