function InitBlestshoppen ( )
{
	if ( typeof ( BlestBoxSet ) != 'undefined' )
	{
		var base = document.getElementsByTagName ( 'base' )[0].href;	
		// Set some blestbox options
		BlestBoxSet ( 'background-opacity', 0.7 );
		BlestBoxSet ( 'graphics-path', base + 'upload/images-master' );
		BlestBoxSet ( 'animation-path', base + 'upload/images-master' );
		BlestBoxSet ( 'background-color', '#fff' );
		BlestBoxSet ( 'shadowbackground-color', '#000' );
		BlestBoxSet ( 'framebackground-color', '#fff' );
		BlestBoxSet ( 'page-width', 520 );
		BlestBoxSet ( 'page-height', 440 );
	}
	else
	{
		setTimeout ( 'InitBlestshoppen ( )', 50 );
	}
}
InitBlestshoppen ( );

