$(document).ready(function() 
{  
// Use the each() method to gain access to each elements attributes
   $('#igit_rpwt_css a').not(".igit_rpwt_rel_img").each(function()
   {
  
      $(this).qtip(
      {
			style: {
			name: '', 
			tip: true,
			textAlign: '',
			border: {
               width: ,
               radius:             },
			width: , // Set the tooltip width
			height:  // Set the tooltip width
			},
			
			position: { 
				corner: {
					target: 'bottomMiddle',
					tooltip: 'topMiddle'
						} ,
					adjust: {
					   screen: true // Keep the tooltip on-screen at all times
					}
			},
			content: {
            // Set the text to an image HTML string with the correct src URL to the loading image you want to use
            text: $(this).attr('rel'),
	         },
         show: { 
            when: '', 
            solo: , // Only show one tooltip at a time
			effect: { type: '',length:  }
         },
         hide: {
			when: '', 
			effect: { type: '' }
		 }
			
		
      })
   });
   
   
    $('#igit_rpwt_css img').not(".igit_rpwt_rel_img").each(function()
   {
  
      $(this).qtip(
      {
			style: {
			name: '', 
			tip: true,
			textAlign: '',
			border: {
               width: ,
               radius:             },
			width: , // Set the tooltip width
			height:  // Set the tooltip width
			},
			
			position: { 
				corner: {
					target: 'bottomMiddle',
					tooltip: 'topMiddle'
						} ,
					adjust: {
					   screen: true // Keep the tooltip on-screen at all times
					}
			},
			content: {
            // Set the text to an image HTML string with the correct src URL to the loading image you want to use
            text: $(this).parent().attr('rel'),
	         },
         show: { 
            when: '', 
            solo: , // Only show one tooltip at a time
			effect: { type: '',length:  }
         },
         hide: {
			when: '', 
			effect: { type: '' }
		 }
			
		
      })
   });
   
   
   
   
   
   
  });
