$(function(){
	
	$("#sendtoafriend").fancybox({
		'transitionIn': 'none',
		'transitionOut': 'none',
		'type'     : 'iframe',
		'width': 578,
		'height': 500
	});

	var fbox = $('#fancybox-frame', window.parent.document);

	if (fbox.length){		
		$('#fancybox-inner', window.parent.document).height($('div.popup-box').height());
		$('#fancybox-wrap', window.parent.document).height($('div.popup-box').height());
	}

	$('a.close-popup').click(function(){
		parent.$.fancybox.close();
	});
});
