$(function(){
var spt = $('span.mailme');
var at = / at /;
var dot = / dot /g;
var addr = $(spt).text().replace(at,"@").replace(dot,".");
$(spt).after('<a onclick="return false;" class="buyer_enq" href="mailto:'+addr+'" mce_href="mailto:'+addr+'" title="Send an email">'+ addr +'</a>')
.hover(function(){window.status="Send a letter!";}, function(){window.status="";});
$(spt).remove();
});


$(document).ready(function() { 
	$('.buyer_enq').qtip({
    	content: {
            text: false,
            url: '/index.php?load=datacapture&form_name=buyer_enquiry', 
			method: 'get',
            title: {
               text: 'yourVIVA Sales Team Enquiry', 
               button: 'Close'
            }
         },
         position: {
			target: $(document.body), 
        	corner: 'center'
         },
         show: { 
            when: 'click', 
            solo: false
         },
        // hide: 'unfocus',
		hide: { 
			when: {
				event: 'custom'
			}
		},
		style: {
			width: 640,
			color: '#000',
			background: '#E2E3E5',
			border: {
				color: '#1B67AA',
				width: 1,
				radius: 3
			},
			title: {
				'color' : '#fff',
				'background' : '#1B67AA',
				'font-size' : 18
			},
			name: 'red'
		},
		api: {
			onShow: function() {
				$('#qtip-blanket').fadeIn(this.options.show.effect.length);
			},
			onHide: function() {
				$('#qtip-blanket').fadeOut(this.options.hide.effect.length);
			}
		}
	});
   if (!$("#qtip-blanket")[0]) {
	   $('<div id="qtip-blanket">').css({
			 position: 'absolute',
			 top: 0,
			 left: 0,
			 height: $(document).height()+500,
			 width: '100%',
			 opacity: 0.7,
			 backgroundColor: 'black',
			 zIndex: 5000 
		})
		.appendTo(document.body)
		.hide(); 
   }
});
