$(function() {
	$("#for-publishers").hover(function () {
		$("#for-publishers p").fadeIn("fast");
	}, 
	function () {
		$("#for-publishers p").fadeOut("fast");
	});
});

$(function() {
	$("#for-advertisers").hover(function () {
		$("#for-advertisers p").fadeIn("fast");
	}, 
	function () {
		$("#for-advertisers p").fadeOut("fast");
	});
});

/**/

$(function() {
	setTimeout(function() {
		$('#platform-publishers .slot-one img:first, #platform-advertisers .slot-one img:first').fadeIn();
		$('#platform-publishers .slot-one, #platform-advertisers .slot-one').cycle({
			pause: 1,
			timeout:  5000,
			speed:  1000,
			delay:  -3000
		});
	});
});

$(function() {
	setTimeout(function() {
		$('#platform-publishers .slot-two img:first, #platform-advertisers .slot-two img:first').fadeIn();
		$('#platform-publishers .slot-two, #platform-advertisers .slot-two').cycle({
			pause: 1,
			timeout:  5000,
			speed:  1000,
			delay:  -2000
		});
	});
});

$(function() {
	setTimeout(function() {
		$('#platform-publishers .slot-three img:first, #platform-advertisers .slot-three img:first').fadeIn();
		$('#platform-publishers .slot-three, #platform-advertisers .slot-three').cycle({
			pause: 1,
			timeout:  5000,
			speed:  1000,
      delay:  -1000
		});
	});
});