jQuery(function() {

	jQuery('span.arlyn').qtip({
	   content: 'This is an active link element',
			style: {
				padding: 5,
				textAlign: 'center',
				border: {
					width: 7,
					radius: 5,
				},
				tip:'topLeft',
				name: 'dark'
			}
	});

    jQuery('.mini-butt').click(function() {
        window.open( jQuery(this).attr('href') );
        return false;
    });

});


