$(document).ready(function() {
	$('.email_friend').each(function () {
		$(this).qtip({
			content: {
				text: false,
				url: $(this).attr('href'),
				method: 'get',
				title: {
					text: 'Email a friend',
					button: 'Close'
				}
			}, position: {
				target: $(document.body),
				corner: 'center'
			}, show: {
				when: 'click',
				solo: true
			}, hide: 'unfocus',
			style: {
				width: 500,
				color: '#000',
				background: '#fff',
				border: {
					color: '#3689C4',
					width: 1
				},
				title: {
					color: '#fff',
					background: '#6090CB',
					'font-size': 18
				}, name: 'red'
			}, api: {
				onShow: function () {
					$('#qtip-blanket').fadeIn(this.options.show.effect.length);
					$('#pse_ef_error').html('');
				}, 
				onContentLoad: function () {
				},
				onHide: function () {
					$('#qtip-blanket').fadeOut(this.options.hide.effect.length);
				}
			}
		});
	});
});