$(document).ready(function(){
	
	$('a[rel^="lightbox"]').lightBox(); 
	
	$("a.galerie img").css('opacity', '0.6');

	$("a.galerie img").hover( 
    		function()	{	
			 	$(this).animate({
				    opacity: 1.00
				  }, 500, function() {
				    
				  });
	    	},
	    	function()	{
	    		$(this).animate({
				    opacity: 0.6
				  }, 500, function() {
				    
				  });

	    	}
	);
	
	var defaultInputTexts = new Array();
	
	$(".inputWithDefault")
	.each(function(){ defaultInputTexts[$(this).attr('id')] = $(this).val(); })
	.focus(function () { if ($(this).val() == defaultInputTexts[$(this).attr('id')]) { $(this).val(''); }})
	.focusout(function () { if ($(this).val() == '') { $(this).val(defaultInputTexts[$(this).attr('id')]); }});
});
