// JavaScript Document

document.write('<style type="text/css">body{display:none}</style>');

$(document).ready( function() {
							
	$('style[type=text/css]').remove();
	
	$('table').attr({
		cellspacing: '0',
		cellpadding: '0'
	});
	
	$('tr.seemore').css('display', 'table-row');
	
	$('tr.seemore strong').click( function() {
		if ($(this).closest('tr').prevUntil(':not(".expandable")').is(':hidden')) {
			$(this).closest('tr').prevUntil(':not(".expandable")').show();
			$
			$(this).html('See Fewer Features');
		} else {
			$(this).closest('tr').prevUntil(':not(".expandable")').hide();
			$(this).html('See More Features');
		}
	});
	
});
