$(document).ready(function() {
    //blog menu hover
    //tool tips
	$("li.tips").each(function(){
		$(this).qtip({
			content:{ 
				url:'/default/includes/display_objects/custom/blog/contentByCategoryPopup.cfm',
				data:{'category':$(this).attr('id')},
				method:'get'
				//text: $('.' + $(this).attr('id') + '-text'), 
			},
			hide: {
				delay: 500,
				fixed: true
			},
			position: {
				corner: {
					//target: 'rightMiddle',
					tooltip: 'leftTop'
				}
			},
			style: {
				padding: '7px 13px',
				background: '#333333',
				border: {
					width: 5,
					radius: 7,
					color: '#333333'
				},
				width: {
					max: 375,
					min: 375
				},
				tip: true
			}
		});
	});
 });
 
