$(document).ready(function(){
	$('#slide_container').innerfade({
		animationtype: 'fade',
		speed: 'slow'
	});

	$('li.product').hover(function(){
		$(this).find('.checkout').addClass('hover');
	}, function(){
		$(this).find('.checkout').removeClass('hover');
	});
});