$(document).ready(function() {
	$('.lightbox').lightbox({
	    fitToScreen: true,
	    imageClickClose: true
    });
	
	$('a[href$=".jpg"], a[href$=".jpeg"], a[href$=".gif"], a[href$=".png"]', '#content').lightbox({
	    fitToScreen: true,
	    imageClickClose: true
    });
	
	var objectNameTextHint = 'Objektname/-ID';
	$('#objectname', '#webgv_form')
		.val(objectNameTextHint)
		.addClass('text-grey')
		.focus(function() {
			if($(this).val() == objectNameTextHint) {
				$(this)
					.val('')
					.removeClass('text-grey');
			}
		}).blur(function(){
			if($(this).val() == '') {
				$(this)
					.val(objectNameTextHint)
					.addClass('text-grey');
			}
		});
	
	$('.submit').click(function() {
		if($('#objectname', '#webgv_form').val() == objectNameTextHint) {
			$('#objectname', '#webgv_form').val('');
		}
		var form = $(this).parents('form');
		form.submit();
	});
});