$(document).ready(function(){
/* menue ani */ 
$('ul#menue li a').not('ul#menue li.aktiv a').hover(function(){
 $(this).stop().animate({marginLeft: '0'}, 150);
 }, function(){
 $(this).stop().animate({marginLeft: '10px'}, 500);
});

$("a.enlargepic").fancybox({
 'titleShow'		: false,
 'transitionIn'	: 'elastic',
 'transitionOut'	: 'elastic'
});

$("a[rel=example_group], a[rel=example_group_1]").fancybox({
 'transitionIn'		: 'elastic',
 'transitionOut'		: 'elastic',
 'titlePosition' 	: 'over',
 'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
		return '<span id="fancybox-title-over">Bild ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
 }
});

});
