$("#mainImage").ready(function(){
	$("#mainImage").cycle({
		timeout: 3000,
		speed: 3500,
		delay: -2000
	});
});

$(".blank").ready(function(){
	$(".blank").click(function(){
			window.open($(this).attr("href"));
			return false;
	});
});