$(document).ready(function() {
	
	$('#resources_section #center_full div.section p:nth-child(3n)').addClass('last_col');
	$('#resources_section #center_full div.section p:nth-child(3n)').after('<div class="clear" />');
	$('#resources_section #center_full div.section').append('<div class="clear" />');
	
	$(".enhance_form").addClass('fill_container');
	
	$(".fill_container input[type='text'], .fill_container input[type='password']").wrap('<span class=\"outer\"><span></span></span>');
	$(".fill_container textarea").wrap('<span class=\"outer\"><span></span></span>');
	
	$(".fill_container span.outer").each(function () {
		if($(this).find("input[type='text'], input[type='password']").className != ""){
			tempname = $(this).find("input[type='text'], input[type='password']").attr('class');
			$(this).addClass(tempname);			
		}
		
		if($(this).find("textarea").className != ""){
			tempname = $(this).find("textarea").attr('class');
			$(this).addClass(tempname);			
		}
		
		$(this).find("textarea", "input[type='text'], input[type='password']").attr('class', '');
		
		if($(this).find("input[type='text'], input[type='password']").className == "inline_block"){
			$(this).parent().parent().addClass("inline_block");			
		}
	
	});
	
});

