// JavaScript Document


//TOOLTIPS
	
	

// Create the tooltips only on document load


$(document).ready(function() 
{
   // By suppling no content attribute, the library uses each elements title attribute by default
   $('ul#mainlinks a[href][title]').qtip({
      content: {
         text: false // Use each elements title attribute
      },
      style: { tip: 'topLeft',
   border: {
      width: 10,
      radius: 6,
      color: '#999999'
   },
   background: '#CCC',
   color: '#000' }
   });
   
});

$(document).ready(function() 
{
   // By suppling no content attribute, the library uses each elements title attribute by default
   $('ul#social a[href][title]').qtip({
      content: {
         text: false // Use each elements title attribute
      },
      style: { tip: 'topLeft',
   border: {
      width: 10,
      radius: 6,
      color: '#999999'
   },
   background: '#CCC',
   color: '#000' }
   });
   
});

$(document).ready(function() 
{
   // By suppling no content attribute, the library uses each elements title attribute by default
   $('ul#links a[href][title]').qtip({
      content: {
         text: false // Use each elements title attribute
      },
      style: { tip: 'topLeft',
   border: {
      width: 10,
      radius: 6,
      color: '#999999'
   },
   background: '#CCC',
   color: '#000' }
   });
   
});


$(document).ready(function() 
{
   // By suppling no content attribute, the library uses each elements title attribute by default
   $('div#bot_nav ul a[href][title]').qtip({
      content: {
         text: false // Use each elements title attribute
      },
      style: { tip: 'topLeft',
   border: {
      width: 10,
      radius: 6,
      color: '#999999'
   },
   background: '#CCC',
   color: '#000' }
   });
   
});

$(document).ready(function() 
{
   // By suppling no content attribute, the library uses each elements title attribute by default
   $('div#logo a[href][title]').qtip({
      content: {
         text: false // Use each elements title attribute
      },
      style: { tip: 'topLeft',
   border: {
      width: 10,
      radius: 6,
      color: '#999999'
   },
   background: '#CCC',
   color: '#000' }
   });
   
});

$(document).ready(function() 
{
   // By suppling no content attribute, the library uses each elements title attribute by default
   $('div.header[title]').qtip({
      content: {
         text: false // Use each elements title attribute
      },
      style: { tip: 'topLeft',
   border: {
      width: 10,
      radius: 6,
      color: '#999999'
   },
   background: '#CCC',
   color: '#000' }
   });
   
});

$(document).ready(function() 
{
   // By suppling no content attribute, the library uses each elements title attribute by default
   $(' a.black[href][title]').qtip({
      content: {
         text: false // Use each elements title attribute
      },
      style: { tip: 'topLeft',
   border: {
      width: 10,
      radius: 6,
      color: '#999999'
   },
   background: '#CCC',
   color: '#000' }
   });
   
});





// Horizontal accordion

$(function(){   
 $(".haccordion").haccordion();   
});  












