$(document).ready(function() {
	$(".slideshow").each(function(){
		
       	$(this).cycle(
        {	
            timeout: 0,
            heigth: 130,
            cleartype:  1
        }
        ),
        $(this).hover(
        	function() {
        	$(".slideshow").cycle('resume');
           	$(this).cycle('next');
            
         	},
         	function(){
         		$(this).cycle('pause');
            }),
        $(this).click(
        	function() {
        		$(".slideshow").cycle('pause');
           	}
       );
      // $(this).removeClass('hidden');
		$(this).css('visibility','visible');
	});

});



