/*Javascript for ohiobreastdr.com */
/*Requires jQuery and jQuery.cycle		Alex Ford, July 2009*/

$(document).ready(function()
{	/*initialization, event handlers, etc.*/

	/* homepage slideshow */
	$('#homepageslideshow').cycle({ 
    				speed:  1000,
    				timeout: 3000,
    				random: 1		
	});
	
	/* procedure page slideshow */
	$('#procedureslideshow').cycle({ 
    				speed:  1000,
    				timeout: 3000,
    				random: 1
	});


});