// JavaScript Effects
$(document).ready(function(){
	
	
	// Flickr Feed with FancyBox
	$('#flickr-home').jflickrfeed({
		limit: 10,
		qstrings: {
		set: '72157628274929905', /* Das hier ist die ID des gewünschten SETS */
		nsid: '22905029@N05' 	/* Das ist die ID des USERS */	
		},
		itemTemplate: '<li>'+
						'<a rel="product-gallery" class="fancybox-image" href="{{image_b}}">' +
							'<img src="{{image_s}}" alt="{{title}}" />' +
						'</a>' +
					  '</li>'
					  
	}, function(data) {
		$("a.fancybox-image").fancybox({
		'titlePosition' : 'over',
		'transitionIn'	:	'fade',
		'transitionOut'	:	'fade',
		'overlayColor' : '#000',
		'overlayOpacity' : 0.75
    });
    
    // Flickr Opacity
    $(function() {
      $("#flickr-home img").css("opacity","1");
      $("#flickr-home img").hover(function () {
        $(this).stop().animate({
            opacity: 0.5
        }, 'fast');
      },
      function () {
      $(this).stop().animate({
          opacity: 1
        }, 'normal');
      });
    });
	});
	
	
    
		
});


