function moddate() {


	var html = $.ajax({
	  url: "/index.php/home/moddate",
	  async: false
	 }).responseText;
	 return html;


}
$("img.egad").qtip({
   content: 'Egad!  Warning!  Caution!  ...Wow.',
   show: 'mouseover',
   hide: 'mouseout',
   position: {
      corner: {
         target: 'center',
         tooltip: 'center'
      }
   },
   style: { 
      name: 'cream' // Inherit from preset style
   }
});

$("span.web").qtip({
   content: 'I\'m fluent in HTML, PHP (standalone and w/ CodeIgniter Framework), Ruby on Rails, JavaScript (standalone, Scriptaculous/Prototype, Dojo, and jQuery), MySQL, Oracle, Java, Flash w/ Actionscript, and Microsoft Access w/ VBA.<br/><br/>Basic knowledge of J# and Visual Basic.<br/><br/>I\'m currently learning Objective-C, focusing on iPhone development.<br/><br/>Dreamweaver is OK, but Coda is my IDE of choice.<br/><br/>In other words, I think I know what I\'m doing.',
   show: 'mouseover',
   hide: 'mouseout',
   position: {
      corner: {
         target: 'topMiddle',
         tooltip: 'bottomMiddle'
      }
   },
   style: { 
      name: 'cream' // Inherit from preset style
   }
});

$("span.rockitthill").qtip({
   content: 'I\'ve started a Creative Services business called Rockitt Hill.  Check out the link at the bottom of the page to find out more!',
   show: 'mouseover',
   hide: 'mouseout',
   position: {
      corner: {
         target: 'topMiddle',
         tooltip: 'bottomMiddle'
      }
   },
   style: { 
      name: 'cream' // Inherit from preset style
   }
});

$("span.music").qtip({
   content: 'Music is my passion for life.  I don\'t believe it\'s simply something we listen to, but something that drives our souls.<br/><br/>I play electric guitar, acoustic guitar, bass, keys/synth, and mandolin, as well as using software for song sequencing.  I love it.',
   show: 'mouseover',
   hide: 'mouseout',
   position: {
      corner: {
         target: 'topMiddle',
         tooltip: 'bottomMiddle'
      }
   },
   style: { 
      name: 'cream' // Inherit from preset style
   }
});

$("span.pdf").qtip({
   content: 'Filename: Resume.pdf<br/>' + moddate(),
   show: 'mouseover',
   hide: 'mouseout',
   position: {
      corner: {
         target: 'topMiddle',
         tooltip: 'bottomMiddle'
      }
   },
   style: { 
      name: 'dark' // Inherit from preset style
   }
});

$("a#lastfm").qtip({
	content: 'last.fm - dougclarkmusic',
	show: 'mouseover',
	hide: 'mouseout',
	position: {
		corner: {
			target: 'bottomMiddle',
			tooltip: 'topMiddle'
		}
	},
	style: {
		name: 'dark'
	}
});
