
$(document).ready(function() {
	 kT = new KinoTrailer();
	 	 $('#kinoTrailerIndex li:first-child a.date').click();
 });


/*jquery accordion for kino trailer*/
function initMenu() {
	
  	$('#kinoTrailerIndex li a').live('click', function() {
			var checkElement = $(this).next();
			if((checkElement.is('ul')) && (checkElement.is(':visible'))) {
        	return false;
        }
     	 if((checkElement.is('ul')) && (!checkElement.is(':visible'))) {
        	$('#kinoTrailerIndex ul:visible').slideUp('slow');
        	checkElement.slideDown('slow');
        	return false;
        }
      }
    );
 kino_content=jQuery('#kinoTrailerIndex').html();
$('#KinoListContainer ul').html(kino_content);
  }
  $(document).ready(function() {initMenu();});
