$(function() {	
			$('#slides').innerfade({ 
        		speed: 1150, 
        		timeout: 4000, 
				type: 'sequence',
				containerheight: '300px'
    		});  
    	});  
		
		
$(function() {
			$('ul.hover_block li').hover(function(){
				$(this).find('img').fadeOut("fast");
			}, function(){
				$(this).find('img').fadeIn("fast");
			});
			$('ul.hover_block2 li').hover(function(){
				$(this).find('img').fadeOut("fast");
			}, function(){
				$(this).find('img').fadeIn("fast");
			});

		});