Utils = function (local_conf)
{
    if (typeof jQuery === 'undefined')
    {
         throw 'Utils exception: jQuery not found.';
    }

	var conf = {};

    conf.boxId		= null;
	conf.cLang		= null;
	conf.domain		= null;
	conf.env		= null;

	/**
	 * @param {Object} data
	 */
    var init = function (local_conf)
    {
		conf = jQuery.extend(conf, local_conf);

		//
        init = function () { };
    };

	jQuery(document).ready(
	    function ()
	    {
	        init(local_conf);

			setTimeout(
				function()
				{
					if( jQuery( '#flash-messanger' ) )
					{
						jQuery( '#flash-messanger' ).slideUp();
					}
				},
				5000
			);

			jQuery('a[rel="lightbox"]').lightBox({
				imageLoading: '/public/img/jquery/lightbox/lightbox-ico-loading.gif',
				imageBtnClose: '/public/img/jquery/lightbox/lightbox-btn-close.gif',
				imageBtnPrev: '/public/img/jquery/lightbox/lightbox-btn-prev.gif',
				imageBtnNext: '/public/img/jquery/lightbox/lightbox-btn-next.gif',
				containerResizeSpeed: 350
			});
	    }
    );
}
