Cufon.replace('#top h1' , { fontWeight: 'bold' });
Cufon.replace('#top h2');
Cufon.replace('#content h1', { fontWeight: 'bold' });
Cufon.replace('#content h3', { fontWeight: 'bold' });
Cufon.replace('#side h1', { fontWeight: 'bold' });

var id = 0;

var slideSwitch = function() {
	id = ( id == 3 ) ? 0 : id + 1; 
	$('#slideshow #slidephoto #slideinner').animate({marginTop: -id*115});
}

var timer = setInterval( "slideSwitch()", 5000 );

$(document).ready(function(){

	$('#slideshow #slidephoto').css('overflow','hidden');

		$('#slideshow ul a').click(function(){
			clearInterval(timer);

			var now = $(this).index('#slideshow ul a');
			$('#slideshow #slidephoto #slideinner').animate({marginTop: -now*115});
			id = now;

			timer = setInterval( "slideSwitch()", 5000 );
		});
});
