$(document).ready(function(){
	$('.miniaturasSecundarias a[title]').qtip({ 
        position: {
        	corner: {
            	tooltip: 'topMiddle',
                target: 'bottomMiddle'
            }
        },
        style: {
        	border: {
            	width: 0,
                radius: 5
            },
            width: 210,
            color: '#ffffff',
            background: '#303030',
            padding: 2, 
            textAlign: 'center',
            'font-size':'0.80em',
            tip: true, 
            name: 'dark' 
        },
        show: { delay: 0 },
        hide: { delay: 100 }
	})
});