/*
/*                                           MMMMMM                                                 
                                             MMMMMM                                                 
       MMMMMMMM.                             MMMMMM                                                 
     8MMMMMMMMM=                             MMMMMM                                                 
    NMMMMMMMMMM                              MMMMMM                                                 
    MMMMMM.....      MMMM.                   MMMMMM     MMMM     .MMMM.       ,MMMMMM    MMMM       
    MMMMMM        ZMMMMMMMMM  .MMMMM   MMMMMMMMMMMM .?MMMMMMMM MMMMMMMMMM. MMMMMMMMM..MMMMMMMMMD.   
    MMMMMM.      MMMMMMMMMMMM .MMMMM   MMMMMMMMMMMM MMMMMMMMM.MMMMMMMMMMMM MMMMMMMMM.MMMMMMMMMMMM   
     MMMMMMM    :MMMMM. DMMMMM.MMMMM   MMMMMMMMMMMM.MMMMMZ   ~MMMMM  MMMMMMMMMMMM.  MMMMM. .MMMMM.  
     .MMMMMMMM  MMMMM   .MMMMM MMMMM   MMMMMMMMMMMMMMMMMM   .MMMMM    MMMMMMMMMMM   MMMMM.  ZMMMMM  
     . MMMMMMMM MMMMM.   MMMMM MMMMM   MMMMMMMMMMMMMMMMM7    MMMMM    MMMMMMMMMMM  MMMMM~    MMMMM  
       . MMMMMMMMMMMM   .MMMMM.MMMMM   MMMMMMMMMMMMMMMMM    .MMMMM    MMMMMMMMMMM  MMMMMMMMMMMMMMM. 
          MMMMMMMMMMM    MMMMM MMMMM   MMMMMMMMMMMMMMMMM7   .MMMMM.   MMMMMMMMMMM  MMMMMMMMMMMMMMM  
          MMMMMMMMMMM   .MMMMM.MMMMM   MMMMMMMMMMMMMMMMMM.  .MMMMM    MMMMMMMMMMM   MMMMM...        
    .M    MMMMMMMMMMMM  IMMMMM MMMMM.  MMMMMMMMMMMMZMMMMM.   MMMMMM  MMMMMMMMMMMM   MMMMM=          
    MMMMMMMMMMMM MMMMMMMMMMMM. MMMMMMMMMMMMMMMMMMMM.MMMMMMMMM.MMMMMMMMMMMM MMMMMM   .MMMMMMMMMMM=   
    MMMMMMMMMMM  .MMMMMMMMMM    MMMMMMMMMMMMMMMMMMM .MMMMMMMMM.MMMMMMMMMM  MMMMMM    .MMMMMMMMMMM.  
     MMMMMMMM       MMMMMM       :MMMMMMMMM. MMMMMM    MMMMMM    MMMMMM    MMMMMM      .MMMMMMMM.   
     
    (c) Copyright 2010 by Christopher Jahn - All Rights Reserved.
*/


// Kategorien
$(document).ready(function(){
	$(".btn-toggle").click(function(){
		$("#slide-out").slideToggle("slow");
		$(this).toggleClass("current"); return false;
	});
	
	$(".btn-togglecomment").click(function(){
		$("#slide-addcomment").slideToggle("slow");
	});
	
	$("#slide-thumb").click(function(){
		$("#thumbnails").slideToggle("slow");
		$(this).toggleClass("current"); return false;	
	});


// Listen mit gelben Squares

    $('ul.colorsquare li').each(function(i, e) {
        $(e).css('color', '#ffc100')
        $(e).contents().wrap('<span class="text"></span>')
    })

// Navigation Spielerei
	$("#top-nav a")
	.hover(function(){
		$(this).animate({ paddingTop: '11px' }, 200);
		},
	function(){
		$(this).animate({ paddingTop: '5px' }, 200);
		}
	)

// Image Fader
	$(".thumb-effect")
	.hover(function(){
		$(this).animate({opacity: 1});
		$(this).children().animate({ 'top': '-=30px' });
		},
	function(){
		$(this).animate({opacity: .5});
		$(this).children().animate({ 'top': '+=30px' });
		}
	)

	$("#thumbnails .thumbnails")
	.hover(function(){
		$(this).animate({opacity: 1});
		$(this).children().animate({ 'top': '-=30px' });
		},
	function(){
		$(this).animate({opacity: .5});
		$(this).children().animate({ 'top': '+=30px' });
		}
	)

	$("#nav_thumbs")
	.hover(function(){
		$(this).stop().animate({opacity: 1});
		},
	function(){
		$(this).stop().animate({opacity: .6});
		}
	)
	
});