/*****************************************************
					Nova Janela
*****************************************************/
function openWindow(url) {
	window.open(url,'_blank');
}
/*****************************************************
					jQuery
*****************************************************/
$(document).ready(function() {
	//Inicializa Tooltip
	$('#bookmarks div[tooltip]').each(function() {
		$(this).qtip({
			position: {
				corner: {
					tooltip: 'bottomMiddle',
					target: 'topMiddle'
				}
			},
			content: $(this).attr('tooltip'),
			style: {
				border: {
					width: 3,
					radius: 7
				},
				padding: 5, 
				textAlign: 'center',
				tip: true,
				name: 'red' 
			}
		});
   });
});