$(document).ready(function()
{
	$('a.qtip').livequery(function(){
		$(this).qtip({ 
			style: { 
				width: '100%',
				name: 'light', 
				tip: true ,
				border: {
					width: 3,
					radius: 8
				}
			},
			position: {
                corner: {
                   target: 'bottomMiddle', // Position the tooltip above the link
                   tooltip: 'topMiddle'
                },
                adjust: {
                   screen: true // Keep the tooltip on-screen at all times
                }
            }
		});
		
		if($(this).attr('href').indexOf('#') != -1)
		{
			$(this).click(function(){
				return false;
			});
		}
	});
});
