function equipPreviews(previews){
	$.each(previews, function(index, objValue){
		//hide preview
		$('#'+objValue).focus(function(){
			//set val and show preview
			$('#'+objValue+'_preview').hide().html($(this).val()).slideDown();
		});
		$('#'+objValue).blur(function(){
			//set val and show preview
			$('#'+objValue+'_preview').html($(this).val());
		});
	});
}
