	// cycle through images

$(document).ready(function() {

 		$('#slideshow_left').css( "display", "block" );
 		$('#slideshow_right').css( "display", "block" );

 		$('#slideshow_left_image_switcher').cycle( {
 			fx: 'turnDown',
    delay:2500,
    timeout:5000,
    speed:500,
    sync:1
 		});

 		$('#slideshow_right_image_switcher').cycle( {
 			fx: 'turnDown',
    delay:5000,
    timeout:5000,
    speed:500,
    sync:1
 		});

});

