/*
 * init javascript by CCI IT GROEP
 * http://www.cci-itgroep.nl/
 * Copyright (c) 2009 CCI IT GROEP
 */

/*== HideEmptyImages ==*/
function HideEmptyImages()
{	
	var regex_1 = new RegExp("(shownoimg)\.gif$");
	
	for (var i=0; i < document.images.length; i++)
	{
		if (regex_1.test(document.images[i].src))
		{
			document.images[i].style.display = "none";
		}
	}
}
/*== ==*/

/*== Body onload (jQuery) ==*/
$(document).ready(function()
{
	HideEmptyImages();
});
/*== ==*/

/*== Body onload ==
window.onload = function(e)
{
	HideEmptyImages();
}
/*== ==*/
