$(function() {
    var stack = [];

    // preload images into an array

      $("#slideshow").cycle({
		  fx: 'fade',
		  timeout: 5000,
          pager:  '#bildnav',
		  pagerEvent: 'mouseover' 
      });
	  
	  $('#bildnav a').click(function() {
		$('#slideshow').cycle('pause');
		});
		
	  $('#bildnav a').mouseover(function() {
		$('#slideshow').cycle('resume');
	  });
	  
	  // $("#demo a").tooltip({
      //   tip: '.demotip',  
       //  effect: 'slide',
// 		offset: [10, 0]
	// 	});
});
