Any ideas on how one could incorporate ads from Google Adsense for Mobile?
EDIT: NM, figured it out.
To do it, create a php page say "googlead.php" and insert the php code from Google Adsense. Then load it to your server. Next create a plug-in for vbulletin with hook location at 'global_start' with this code:
Code:
ob_start();
include('/path/to/file/googlead.php');
$mobileads = ob_get_contents();
ob_end_clean();
Then insert
$mobileads
into the header template, or wherever you want the ad to appear.