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