$(document).ready(function()
{
    if($('.divSBI').length)
    {
        $('.divSBI').click(function()
        {
            if($(this).children("img").length)
            {
                imgp=$($(this).children("img")[0]).attr("src");
                imgp=imgp.split('.')[0]+'.jpeg';
            }
            else
            {
                imgp=$(this).css("background-image");
                imgp = imgp.substring(4,imgp.length-1);
            }
            imgar = imgp.split('/');
            boxBlock(1);
            var imgP = 'http://'+location.hostname+baseURL+'/public/images/'+((imgar[imgar.length-2]=='images')?'big/':imgar[imgar.length-2]+'/big/')+imgar[imgar.length-1];
            $('#divDragNdrop').css("visibility","hidden").css("display","block");
            $('#divDragNdropMove').html($('.divHederItems h2 strong').html());
            $('#divDragNdropContent').html('<div style="text-align:center"><img id="imgbigimg" src="'+imgP+'" alt="" align="middle"/></div>');
            $('#imgbigimg').load(function(){
                boxBlock(2);
                dragndropsetsize($(this).width()+30,$(this).height()+100,1);
            });
            $('#divDragNdrop').css("visibility","visible");
        });
    }
});