/**
 * Site landing script
 * 
 * @author Preston Mark Stone <preston@survivorshipatoz.org>
 * @package Site
 * @subpackage Javascript
 * @copyright 2010 Survivorship A to Z, Inc.
 * @internal SAZDOC
 */
$(document).ready(function() 
{
   // Match all link elements with href attributes within the content div
   $('#financial').qtip(
   {
      content: $('#logo_financial').html(), 
      position: {
      	corner: {
      		tooltip: 'leftTop',
      		target: 'rightBottom'	
      	}	
      },
      style: {
                  border: {
                     width: 2,
                     radius: 4,
                     color: '#36789f'
                  },
                  padding: 10, 
                  textAlign: 'left',
                  tip: true, 
                  name: 'light',

    			fontFamily: 'arial,"lucida grande",tahoma,verdana,sans-serif', 
    			fontSize: '12px'

               }
   });
   $('#health').qtip(
   {
      content: $('#logo_health').html(),
      position: {
      	corner: {
      		tooltip: 'leftTop',
      		target: 'rightBottom'	
      	}	
      },
      style: {
                  border: {
                     width: 2,
                     radius: 4,
                     color: '#36789f'
                  },
                  padding: 10, 
                  textAlign: 'left',
                  tip: true, 
                  name: 'light',

    			fontFamily: 'arial,"lucida grande",tahoma,verdana,sans-serif', 
    			fontSize: '12px'

               }
   });
   $('#information').qtip(
   {
      content: $('#logo_information').html(),
      position: {
      	corner: {
      		tooltip: 'leftTop',
      		target: 'rightBottom'	
      	}	
      },
      style: {
                  border: {
                     width: 2,
                     radius: 4,
                     color: '#36789f'
                  },
                  padding: 10, 
                  textAlign: 'left',
                  tip: true, 
                  name: 'light',

    			fontFamily: 'arial,"lucida grande",tahoma,verdana,sans-serif', 
    			fontSize: '12px'

               }
   });
});

