$(document).ready(function() {

	// I'm on the outside
	hostname = window.location.hostname
	$("a[href^=http]")
		.not("a[href*='" + hostname + "']")
		.addClass('link external')
		.attr('target', '_blank');
		
	$('#question_formatting li:last-child').addClass('last');

  $('.feature').each(function() {
  
    // Strip the img titles
    $(this).find('img').attr("title", "");
 
    // Iterate over each with .qtip()
    $(this).qtip({
      show: { solo: true, ready: false },
      hide: { fixed: true },
      content: { text: $(this).children('.tooltip') },
      position: { adjust: { screen: true }, corner: { target: 'topMiddle', tooltip: 'bottomMiddle' } },
      style: { width: 300, padding: 15, background: '#F5F5B5', color: 'black', border: { width: 5, radius: 5, color: '#EBEBAD' }, tip: { corner: 'bottomMiddle', color: '#EBEBAD', size: { x: 20, y: 10 } } }
    });
 
  });
	
});