$(function() {
	$('#headerRotator').cycle({
		fx:      'fade', 
		speed:    3000, 
		timeout:  7500,
		sync: false
	});
	
	$("div.box, div.article").each(function() {
		var link = $(this).find("a").attr("href");
		$(this).click(function(){
			window.location = link;
		});
		$(this).css({cursor: "pointer"});
	});
	
	
});