// JavaScript Document
jQuery(document).ready(function(){
	//	Fades in the slideshow
	jQuery('#mhslideshow').hide(0);
    jQuery('#mhslideshow').fadeIn(2000);	
	
    jQuery('#mhslideshow').cycle();	//	Handles the slideshow
    
});

