window.onAfter = function() {
	$('.home_slidearea_container').css('background-color', 'transparent');
}
window.onBefore = function() {
	$('.home_slidearea_container').css('background-color', 'transparent');
}

$(document).ready(function() {
	// Slideshow implementation
	$('.home_slidearea_container').css('background-color', 'transparent');
	$('#home_slide_div')
		.cycle({
			timeout:	10000, 
			fx:		'fade',
			after:		window.onAfter,
			before:		window.onBefore,
			prev:		'div.home_slide_navbox_prev a',
			next:		'div.home_slide_navbox_next a',
			pager:		'#slideshow_nav'
		});
});



$(document).ready(function() {
	// Slideshow implementation
	$('.testimonial_slider')
	
		.cycle({
				timeout:  4000, 
			fx:		'fade'
			
		});
	
});
