// JavaScript Document

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

$(document).ready( function() {
							
	$('style[type=text/css]').remove();

	$('form').pngFix();
	$('tr.expandable').hide();
	$('table.compareplans tr.seemore').hide();
	
	$('tr.seemore strong').click( function() {
		if ($(this).closest('tr').prevUntil('.solid').is(':hidden')) {
			$(this).closest('tr').prevUntil('.solid').show();
			$(this).html('See Fewer Features');
		} else {
			$(this).closest('tr').prevUntil('.solid').hide();
			$(this).html('See More Features');
		}
	});
	
	$('table.compareplans tr.seemore').show();
	
});
