/*
 * http://www.hauptmenue.com
 * file: jquery.hauptmenue.js
*/

$(document).ready(function () {
  $('div.projectThumbs a').click(function()
    {
      loadProjekt($(this).attr('name'));
	  $('div#loader').show();
      return false;
    });
});

function loadProjekt($id){
  $.ajax({
    url: 'index.php?id=5&tx_hauptmenue_pi1[projekt]='+$id+'&tx_hauptmenue_pi1[action]=ajax&tx_hauptmenue_pi1[controller]=Projekt&type=100',
    success: function(data) {
	  $('div#loader').hide();
      $('div#projectRoot').html(data);
      
      $('div#projectContainer').animate({ height: 'show' }, 2000, function(){
         $("div.scrollable").scrollable({
	    size: 1,
	    items: '#items',
	    loop: false,
	    speed: 800
         });
      });
      
      $('div#closeProject').click(function() {
		 $('div#projectContainer').animate({
		 	height: 'hide',
			easing: 'swing'}, 2000, function(){
				$('div#projectRoot').html('');
		 });
      });
    }
  });
};
