jQuery(document).ready(function($) 
{
 

	$("h1[title]").qtip({
	 content: {
	         text: false // Use each elements title attribute
	      },
	     style: { 
	      width: 200,
	      padding: 5,
	      background: '#F15A22',
	      color: 'white',
	      textAlign: 'center',
	      border: {
	         width: 7,
	         radius: 5,
	         color: '#F15A22'
	      },
	      position: {
	      	corner: {
	            target: 'bottomRight',
	         	tooltip: 'topLeft'
	       		}
	  		 },
	      tip: 'topLeft',
 	      name: 'dark' // Inherit the rest of the attributes from the preset dark style
	   }
	});
	
 
	$('#swagger h1').click(function()
	{
    $('#holler').fadeIn('fast').removeClass('hidden').find('a').attr('href','mailto:blair@kreviii.com');
	event.preventDefault(); // prevents what ever the buttons was doing
	});
	
	

});  //end jquery
