function fancyboxDocuments( sID ) {
	//alert( "fancyboxDocuments sID=" + sID );
	if ( $(sID).parent().css("display")!="none" ) {
		//Voor iedere link
		$(sID + " a").each(
			function() {
				//Indien ShowModuleItem.asp, dan link omzetten
				//alert( "href=" + $(this).attr("href") );
				if ( $(this).attr("href") && $(this).attr("href").toLowerCase().indexOf("showdocument.asp")>0 && !$(this).attr("href").match( /javascript:/i) && $(this).attr("href").toLowerCase().indexOf("download=true")<0) {
					$(this).attr( "href", $(this).attr("href").replace("{SessionID}",sSessionID) );
					//Toon in FancyBox
					$(this).fancybox(
						{
							'width'				: 930
						,	'height'			: 650
						,	'autoScale'			: false
						,	'transitionIn'		: 'swing'
						,	'transitionOut'		: 'swing'
						,	'type'				: 'iframe'
						,	'scrolling'			: 'yes'
						,	'overlayOpacity'	: '0.8'
						,	'overlayColor'		: '#000'
						,	'onComplete': 
								function() {
									//Niet centreren maar over de rest heen zetten en versleepbaar maken.
									//$("#fancybox-wrap")
									//	.css("top","10px")
									//	.easydrag()
									//;
								}
						}
					);
				}
				
			}
		);
	}
}
$(function (){  
	fancyboxDocuments(".content");
});

$(function(){
	$(".homepage embed, .homepage object").wrap("<div class='FlashContainerDiv'></div>");
});
