$(document).ready(function() {

  $("#frm_add_cat_toggle").click(function() {
   $("#frm_add_cat").toggle();
  });
  
  $(".togglelink").click(function() {
   $(this).parent().find(".toggleitem").toggle();
  });


  $(".confirm").click(function() { 
	input_box=confirm("Aktion wirklich durchführen?");
	if (input_box==true) {
		return true;
	} else {
		return false;
	}
  });

  
  $(".msg_succ")
    .animate({opacity: 1.0}, 3000)
    .fadeOut('slow', function() {
      $(this).remove();
    });
    
  $(".msg_err")
    .animate({opacity: 1.0}, 3000)
    .fadeOut('slow', function() {
      $(this).remove();
    });

    
   
	$("a.photoarenaimg").click(function(){	
      var img = $(this).attr("href");
      $("#gallery-image").attr({src: img});
      $("#thumbnails li a").removeClass("active");      
      $(this).addClass("active"); 	
    	this.blur();
    	return false;
	});




});

