$(function() {         
         
    // setup tooltip for a single DIV element  
    $("#trigger a").tooltip({ 
 
        // each trashcan image works as a trigger 
        tip: '#tooltip', 
		
 
        // custom positioning 
        position: ['center', 'right'], 
 
        // move tooltip a little bit to the right 
        offset: [160, 35], 
         
        // use a simple show/hide effect 
        effect: 'toggle', 
 
        // there is no delay when the mouse is moved out of the trigger 
        delay: 0 
    });
	
	

}); 

$(function() {         
         
   // setup tooltip for a single DIV element  
    $("#trigger2 a").tooltip({ 
 
        // each trashcan image works as a trigger 
        tip: '#tooltip2', 
		
 
        // custom positioning 
        position: ['center', 'right'], 
 
        // move tooltip a little bit to the right 
        offset: [500, 35], 
         
        // use a simple show/hide effect 
        effect: 'toggle', 
 
        // there is no delay when the mouse is moved out of the trigger 
        delay: 0 
    }); 
     

}); 
$(function() {         
         
    // setup tooltip for a single DIV element  
    $("#trigger3 a").tooltip({ 
 
        // each trashcan image works as a trigger 
        tip: '#tooltip3', 
		
 
        // custom positioning 
        position: ['bottom', 'right'], 
 
        // move tooltip a little bit to the right 
        offset: [0, 0], 
         
        // use a simple show/hide effect 
        effect: 'toggle', 
 
        // there is no delay when the mouse is moved out of the trigger 
        delay: 0 
    });    
	
	$("#trigger4 a").tooltip({ 
 
        // each trashcan image works as a trigger 
        tip: '#tooltip4', 
		
 
        // custom positioning 
        position: ['bottom', 'right'], 
 
        // move tooltip a little bit to the right 
        offset: [0, 0], 
         
        // use a simple show/hide effect 
        effect: 'toggle', 
 
        // there is no delay when the mouse is moved out of the trigger 
        delay: 0 
    });  
	
	$("#trigger5 a").tooltip({ 
 
        // each trashcan image works as a trigger 
        tip: '#tooltip5', 
		
 
        // custom positioning 
        position: ['bottom', 'right'], 
 
        // move tooltip a little bit to the right 
        offset: [0, 0], 
         
        // use a simple show/hide effect 
        effect: 'toggle', 
 
        // there is no delay when the mouse is moved out of the trigger 
        delay: 0 
    });     
	
	$("#trigger6 a").tooltip({ 
 
        // each trashcan image works as a trigger 
        tip: '#tooltip6', 
		
 
        // custom positioning 
        position: ['bottom', 'right'], 
 
        // move tooltip a little bit to the right 
        offset: [0, 0], 
         
        // use a simple show/hide effect 
        effect: 'toggle', 
 
        // there is no delay when the mouse is moved out of the trigger 
        delay: 0 
    });     
}); 