﻿$(document).ready( function() {
	
	//Make whole div clickable
	$("#advert").click(function() {
		location.href = $(this).find("a").attr("href");
	});
	
	//Switch messages
	setTimeout(function() {
		$("#advert a").html("OUR NEW CONCEALED CISTERN")
	},5000);
	setTimeout(function() {
		$("#advert a").html("CLICK HERE TO FIND OUT MORE…")
	},8000);
	
	//Move graphic in
	$("#advert").animate({
		"width": "320px"
	},1000);
	
	//Fade it out
	setTimeout(function() {
		$("#advert").fadeOut();
	},12000);
	
});
