$(document).ready( function() {
if ($("#outer").length > 0){
		
	var img = $(".veliki").draggable({ 
		containment: '#inner',
		cursor: "move"
	}),
    h = img.height(),
    w = img.width(),
    oH = $('#outer').height(),
    oW = $('#outer').width(),
    iH = h + (h - oH),
    iW = w + (w - oW),
    iT = '-' + ((iH - oH)/2) + 'px',
    iL = '-' + ((iW - oW)/2) + 'px';

$('#inner').css({ width: iW, height: iH, top: iT, left: iL });


$top = $("#inner").css("top");
$left = $("#inner").css("left");
$top1 = $top.substr(1);
$left1 = $left.substr(1);
$('.veliki').css("top", $top1);
$('.veliki').css("left", $left1);

}
}); //doc ready end// JavaScript Document
