// JavaScript Document


$(document).ready( function(){ 
	//$('#news').innerfade({ animationtype: 'slide', speed: 750, timeout: 2000, type: 'random', containerheight: '1em' });
	$('#manoslidesshow').innerfade({ speed: 'slow', timeout: 3000, type: 'sequence', containerheight: '209px' }); 
	//$('.fade').innerfade({ speed: 'slow', timeout: 1000, type: 'sequence', containerheight: '1.5em' }); 
	
	
	
	// hides the slickbox as soon as the DOM is ready
 // (a little sooner than page load)
  $('#slickbox-a, #slickbox-b').hide();
  
  
 // toggles the slickbox on clicking the noted link
  $('a#slick-toggle-a').click(function() {
 $('#slickbox-a').slideToggle(400);
 return false;
  });
  
    $('a#slick-toggle-b').click(function() {
 $('#slickbox-b').slideToggle(400);
 return false;
  });
	
} ); 

