$(document).ready(function(){
  $('#target').fold({
    side: 'right',
    directory: '/templates/svetkrmiv/img',
    autoCurl: true,
    maxHeight: 280,
    starting_width: 150,
    starting_height: 150
  });
  
  // Dialog JQuery UI for authorizing people to websites
  var cookieInformationTab = Get_Cookie('InformationTab');

	  if(cookieInformationTab != 'povoleno'){
		 $('#dialog-form-content').dialog({
			  modal:true,
			  resizable: false,
			  draggable: false,
			  close: function(){
					$.cookie("InformationTab", "povoleno", { expires: 7 });
			  },
			  minWidth: 450
			});
		}
	
})

/*
  Function for get the Cookie by name
*/
function Get_Cookie( name ) {
  var start = document.cookie.indexOf( name + "=" );
  var len = start + name.length + 1;
  if ( ( !start ) && ( name != document.cookie.substring( 0, name.length ) ) ) {
    return null;
  }
  if ( start == -1 ){
     return null;
  }
  var end = document.cookie.indexOf( ";", len );
  if ( end == -1 ){
    end = document.cookie.length;
  }
  return unescape( document.cookie.substring( len, end ) );
}
