    /* Overlay bei Bildgalerie
    --------------------------------------------------------------------- */
$(function() {
	$(".bildgalerie a[rel]").overlay({effect: 'apple'});
});

    /* Overlay bei Bildern links im Content 
    --------------------------------------------------------------------- */
$(function() {
	$(".bild_links a[rel]").overlay({effect: 'apple'});
});

    /* focusEmpty Elemente
    -  bei focus Feld leeren, sofern noch der Standardwert enthalten ist
    --------------------------------------------------------------------- */
function areaOnFocus(element, inputText)
{

     if(element.value == inputText)
     {

          element.value='';

     }

}
function areaOnBlur(element, inputText)
{

     if(element.value=='')
     {

          element.value = inputText;

     }

}

Shadowbox.init();



