function onAfter() {
	$('.home_slide_content').css('background', 'transparent');
}
function onBefore() {
	$('.home_slide_content').css('background', 'transparent');
}

$(document).ready(function() {
	// Slideshow implementation
	$('.home_slide_content').css('background', 'transparent');
	$('#home_slide_div')
		.cycle({
			timeout:	7000, 
			fx:		'fade',
			after:		onAfter,
			before:		onBefore
		});
});

