$(document).ready(function() {
	/*
	 * Open providerlinks in popup
	 */
	$('ul.providers li a').click(function() {
		window.open($(this).attr('href'), 'provider', 'menubar=no,toolbar=no,width=800,height=600');

		return false;
	});

	/*
	 * Resize fancybox to fit content. Fancybox width is fixed, should be configured in parent
	 */
	resizeFancybox();
});

function resizeFancybox()
{
	var height = $(document.body).innerHeight();

	parent.$('div#fancybox-wrap').height(height + 20);
	parent.$('div#fancybox-inner').height(height);
};
