

$(document).ready(function() 
{

$('a[title]').qtip(

{
    
    	
   	show: {
      		delay: 20
   	},
   	
   	style: { 
      		width: 180,
      		padding: 4,
      		background: '#ffffff',
      		color: '#666666',
      		textAlign: 'center',
      		border: {
        		width: 1,
         		radius: 3,
         		color: '#1C6AA6'
      		}
      	}



    }

);





$('img').each(function()
   {
   
   if(!$(this).attr('alt')){ return; }
   if(!$(this).attr('title')){ return; }
         
    //$('img[title]').qtip({
     
     $(this).qtip({
    
    	position: {
      		corner: {
         		target: 'topMiddle',
         		tooltip: 'bottomMiddle'
      		}
   	},
   	show: {
      		delay: 20
   	},
   	
   	style: { 
      		width: 180,
      		padding: 4,
      		background: '#ffffff',
      		color: '#666666',
      		textAlign: 'center',
      		border: {
        		width: 1,
         		radius: 3,
         		color: '#1C6AA6'
      		}
      	}



    });
    
   
    
    
    
    
    
      
    
  });  
    
    
    
    
});



