// jQuery
$(document).ready(function() {
/*
	 // initialize tooltip 
    $("#wrapper img[title]").tooltip({ 
     
        // use single tooltip element for all tips 
        tip: '.dynatip',  
         
        // tweak the position 
        offset: [10, 2], 
         
        // use "slide" effect 
        effect: 'slide' 
         
    // add dynamic plugin  
    }).dynamic( { 
     
        // customized configuration on bottom edge 
        bottom: { 
         
            // slide downwards 
            direction: 'down', 
             
            // bounce back when closed 
            bounce: true 
        } 
    }); 

*/	
	// WPS-Tooltip-Link
    $("#footerlink a").tooltip({ 
        tip: '.wpstip',  
        offset: [-110, -4], 
        effect: 'slide' 
    }).dynamic( { 
        bottom: { 
            direction: 'down', 
            bounce: true 
        } 
    }); 

	
});













































