$(function(){
	$('#menu a')
	.css( {backgroundPosition: "0  90px"} ) /* x y */
	.mouseover(function(){
		$(this).stop().animate({backgroundPosition:"(0 -60px)"}, {duration:300});
		$(this).css({color:"#FFFFFF"});
	})
	.mouseout(function(){
		$(this).stop().animate({backgroundPosition:"(0 90px)"}, {duration:200});
		$(this).css({color:"#666"});
	});
	
	$('#orchis_galeria').spacegallery({
        loadingClass: 'loading',
        perspective: 140,
        border: 1
    });
	
	 $("#full_link").overlay({
        target: '#overlay_element',
        expose: '#f1f1f1',
        onBeforeLoad: function() {
           // $("#overlay_element .overlayWrap").html('<img alt="" src="'+this.getTrigger().attr("rel") + '" />');
           $("#overlay_element .overlayWrap").load('show_image.php?img='+this.getTrigger().attr("rel"));
        }
      });
});
