>
";
print "var user = \"" . wp_get_current_user()->user_login . "\";";
print "var user_email = \"" . wp_get_current_user()->user_email . "\";";
print "var secret = \"" . wp_get_current_user()->user_pass . "\";";
print "" . PHP_EOL;
print '' . PHP_EOL;
# styles needed by jScrollPane
print '' . PHP_EOL;
# jQuery
print '' . PHP_EOL;
# the mousewheel plugin - optional to provide mousewheel suppor
print '' . PHP_EOL;
# the jScrollPane script
print '' . PHP_EOL;
# webbuild css
print '' . PHP_EOL;
# socialbox
print '' . PHP_EOL;
# webbuild
#print '';
# distroquery
print '' . PHP_EOL;
$file = fopen(get_stylesheet_directory() . "/webbuild.js.inc", "r");
print fread($file, 20000);
fclose($file);
# wordpress header code
wp_head();
# webbuild css
print '';
?>
>