$(document).ready(function() {
  
	// Header image scroller
	$("#scroller").cycle({

		fx: 'fade',
		timeout: 5000,
		speed: 1000,
		pause: 0,
		containerResize: 0
	});
  
	// Makes news-blocks clickable
	$(".news-block").click(function(){

    	window.location = $(this).find("a").attr("href");
		return false;

	});


});

