$.ajaxSetup({async: false});
    $.getScript('/js/jquery.qtip-1.0.0-rc3.min.js');
$.ajaxSetup({async: true});

$(document).ready(function(){

	$('.big_flyer').each(function(){
		$(this).qtip({
			content: '<b>'+$('.tooltip .title',this).html()+'</b><br/>'+$('.tooltip .preli',this).html(),
			show: 'mouseover',
            hide: {
                fixed: true // Make it fixed so it can be hovered over
            },
			//hide: 'mouseout',
			position: {
				corner: {
					target: 'centerMiddle'
		      	}
	   		},
	   		style: { 
	   			border: {
                     width: 5,
                     radius: 10
				},
				textAlign: 'left',
				tip: true,
				padding:6,
				name: 'dark' 
			}

		});
	});
});
