$(document).ready(function(){
	$('#slide_show').cycle({ 
	    fx:     'fade', 
	    speed: 1000,
      delay: 0,
      nowrap: 1,
	  random: 1,
	  startingSlide: 0  
	});
  
/*  $('img.gal').hover( function(){$(this).css({"filter":"alpha(opacity=99)", "-moz-opacity":"0.99", "opacity":"0.99"});}, function(){$(this).css({"filter":"alpha(opacity=60)", "-moz-opacity":"0.60", "opacity":"0.60"}); }); */

  $('div.slide_home img').hover( function(){$('#slide_show').cycle('pause');}, function(){$('#slide_show').cycle('resume'); });

});