$(document).ready(function(){
	$("a[rel='bilderGalerie']").colorbox();
});

$(document).ready(function() {
  $("#sortContainer").sortable({ update : function () { 
                                  var order = $('#sortContainer').sortable('serialize'); 
                                  $.ajax({
                                    type: 'GET',
                                    url: "/administration/templates/sortableDatabase.php?"+order
    	  						              });
                                } 
                               });
});


function linkSlider($i)
{
$show = document.getElementById("BlindDown"+$i).style.display;
	if($show == 'none')
  {
		$("#BlindDown"+$i).show();
	}
  else
  {
    $("#BlindDown"+$i).hide();
	}
}

function openSlider($i)
{
	$("#BlindDown"+$i).show();
}

function checkInputText(field){
  text = document.getElementById(field).value;
  if(text == ""){
    document.getElementById(field).value = "Vorname.Nachname";
  }
  if(text == "Vorname.Nachname"){
    document.getElementById(field).value = "";
  }
}
