if(jQuery) {
    jQuery(document).ready(function($){
    
    	jQuery("#illustration-short .popitup").bind('click', function(event){
    		event.preventDefault();
    	});
		
		jQuery("#illustration-short .popitup").qtip({
			show: 'mouseover',
			hide: 'mouseout',
			position: {
				corner: { target: 'rightMiddle', tooltip: 'leftTop' }
			},
			style: {
				background: '#ffffff',
				padding: 10,
			},			
		}) 	
    });
}