$(document).ready(function() {
    	//Main Float
              var counter=1;

            	$('.node-galerie-seite img, .himuesgallery_picture, .field-name-field-multi-up img').each(function(){

                   if(counter % 4==0){

                     $(this).css('margin-right','0');

                   }

                    counter=counter+1;

                });
				$('.content a img').hover(function(){
					$(this).stop().animate({ opacity: '0.7' } , '100');
				} , function(){
					$(this).stop().animate({ opacity: '1'} , '100');
				});
                                
                                
                                
        $('#slider').nivoSlider({
            controlNavThumbs:true,
            controlNavThumbsFromRel:true,
            pauseTime: 3000
        });
        
        $('a[rel="8"]').css({
           "margin": "0"
       })
});//Close Function;

