$(document).ready(function() {
   $('ul.listpictures').PikaChoose({
       'show_captions': false,
       'auto_play': true,
       'show_prev_next': false,
       'user_thumbs':false,
       'slide_enabled':false
   });

   $('a#cms_login_click').click(function() {
       $('#cms_TOP_CONTAINER').slideDown();
       return false;
   });
   $('a#cms_closeLogin').click(function() {
       $('#loginform').slideUp();
       return false;
   });
   $('a#cms_tryLogin').click(function() {
       $.post("/login.php",$('#form_loginform').serialize(), function(response) {
                response = eval(response);
                if (response) {
                    location='/index.php';
                } else {
                    alert("login nicht erfolgreich");
                }
            },"JSON"
       );
       return false;
   });

   
});


