var page = {
	init: function(){
				
		// Slideshow
		$('#slideshow').cycle({
			fx:   'fade',
	       	timeout: 5000,
			startingSlide: ($('#slideshow a').length - 1)
		});
		
		$('.home-article').each(function(){
			if($(this).find('h3 a:first').length > 0){
				$(this).css({
					cursor:'pointer'
				});
				$(this).click(function(){
					window.location = $(this).find('h3 a:first').attr('href');
				})
			}
		});
	}
}
