

jQuery(function($)
{
	$('#navigation_main').navigation();
	$('div.iframe').scout_tabs();
	$('div.home_teaser_container').home();
	$('#content_iframe').iframe();
	$('div.slideshow').slideshow();
	$('form#rendezvous_form').rendezvous();
    $('a.fancybox').fancybox();
    $('a.plugin_popup_link').fancybox({'onStart':displayPopupContent, 'onClosed':hidePopupContent }).trigger('click');
});


function displayPopupContent(e) {
    var id = $(e).attr('href');
    $(id).show(0);
}

function hidePopupContent(e) {
    var id = $(e).attr('href');
    $(id).hide(0);
}
