jQuery(document).ready(function(){
	// replace hr with div, if not in div
	
	// padding right for last paragraph or 2 for CPW dude
	
	jQuery('h2:odd').addClass('odd');
	
	jQuery('.main p:last-child').css('padding-right','65px');

	
	
	
	
	jQuery('#slideshow').cycle({
		fx: 'fade',
		speed: 'slow',
		timeout: 12000,
		pager: '#nav-items',
		slideExpr: 'div.slide'
	});

}); // doc.ready
