jQuery(document).ready(function() {

	// horizontal scrollables. each one is circular and has its own navigator instance
	var horizontal = jQuery(".scrollable").scrollable({size: 3, loop: false});

	horizontal.navigator("#navi");

	jQuery.fn.qtip.styles.blogtool = {
	      width: 220,
	      padding: 5,
	      background: '#e7ffe3',
	      textAlign: 'left',
	      lineHeight: 'normal',
	      border: {
	         width: 7,
	         radius: 5,
	       },
	      tip: 'rightTop',
	      name: 'green'
	}

	jQuery(".preston").qtip({
	   content: '<strong>President and CEO</strong> of Real Freedom Properties.<br><br><a href="about#preston">Read Preston\'s Bio</a><br><br><span style="font-size: .9em"><a href="http://twitter.com/Preston777" target="_blank"><img src="images/twitter_20.png" /> Follow Preston on Twitter</a><br><a href="http://www.facebook.com/discodizzle" target="_blank"><img src="images/facebook_20.png" /> Friend Preston on Facebook</a></span>',
	   position: {
	   		corner: {
	   			 target:'leftMiddle',
	   			 tooltip: 'rightTop'
	        },
			target: jQuery('#preston_img')
	   },
	   hide: {
	            fixed: true,
	            delay: 250
	   },
	   style: 'blogtool'
	});

	jQuery(".andy").qtip({
	   content: '<strong>COO</strong> of Freedomsoft.<br><br><a href="about#andy">Read Andy\'s Bio</a><br><br><span style="font-size: .9em"><a href="http://twitter.com/Andy_Proper" target="_blank"><img src="images/twitter_20.png" /> Follow Andy on Twitter</a><br><a href="http://facebook.com/andyproper" target="_blank"><img src="images/facebook_20.png" /> Friend Andy on Facebook</a></span>',
	   position: {
	   		corner: {
	   			 target:'leftMiddle',
	   			 tooltip: 'rightTop'
	        },
			target: jQuery('#andy_img')
	   },
	   hide: {
	            fixed: true,
	            delay: 250
	   },
	   style: 'blogtool'
	});

	jQuery(".pete").qtip({
	   content: '<strong>COO</strong> of Real Freedom Properties.<br><br><a href="about#pete">Read Pete\'s Bio</a><br><br><span style="font-size: .9em"><a href="http://twitter.com/peteskouras" target="_blank"><img src="images/twitter_20.png" /> Follow Pete on Twitter</a><br><a href="http://www.facebook.com/PeteSkouras" target="_blank"><img src="images/facebook_20.png" /> Friend Pete on Facebook</a></span>',
	   position: {
	   		corner: {
	   			 target:'leftMiddle',
	   			 tooltip: 'rightTop'
	        },
			target: jQuery('#pete_img')
	   },
	   hide: {
	            fixed: true,
	            delay: 250
	   },
	   style: 'blogtool'
	});

	jQuery(".justin").qtip({
	   content: '<strong>Head of Research & Development and Customer Service</strong> at Freedomsoft.<br><br><a href="about#justin">Read Justin\'s Bio</a><br><br><span style="font-size: .9em"><a href="#" target="_blank"><img src="images/twitter_20.png" /> Follow Justin on Twitter</a><br><a href="#" target="_blank"><img src="images/facebook_20.png" /> Friend Justin on Facebook</a></span>',
	   position: {
	   		corner: {
	   			 target:'leftMiddle',
	   			 tooltip: 'rightTop'
	        },
			target: jQuery('#justin_img')
	   },
	   hide: {
	            fixed: true,
	            delay: 250
	   },
	   style: 'blogtool'
	});

});
