/* 
TO ADD NEW PAGE
- add to dynamic menu in business catalyst
- make page in business catalyst using Content template
- add links/testimonials to list at bottom of this file
- create images 462x259/[pagename]-1.jpg, [pagename]-2.jpg etc. for each testimonial as per hero() function
- add details to fixsearch() function

TO ADD NEW CASE STUDY
- add to dynamic menu in business catalyst
- make page in business catalyst using Portfolio Case template
- create images 462x259/[pagename]-1.jpg, [pagename]-2.jpg etc. [bulk rename utility good for this] *if less that 7 case study pics see function casehero() to set lower number
- create image 78x43/[pagename]-1.jpg (only need one of these)
- add details to fixsearch() function

LIST OF PAGES/CASES ON HOME 
- see pages() and cases() functions

PORTFOLIO PAGE
- see portfoliobycategory() and portfoliobyindustry() functions
*/

function navbar(){
	/* toggle children on click, go to href after animation finishes, maximum depth of three tiers */
	var goingsomewhere=false;
	$("#navbar ul li").click(function(){
		if(goingsomewhere==false){
			goingsomewhere=true;
			var goto=$(this).children("a").attr("href");
			/* proceed with animation only if this link is level 3 or lower */
			if($(this).parents("ul").length<3){ 
				if ($(this).children("ul").length){
					/* if there are children close siblings, toggle open or closed, go to link, return false from function */
					$(this).siblings("li").children("ul").removeClass("open").hide("fast");
					if($(this).children("ul").hasClass("open")){
						$(this).children("ul").removeClass("open").hide("fast",function(){ window.location.href=goto; });
						return false;
					}
					else{
						if(goto!="/portfolio.htm"){
							$(this).children("ul").addClass("open").show("fast",function(){ window.location.href=goto; });
							return false;
						}
					}
				}
				else {
					/* no children for this link, but close siblings anyway before going to link */	
					$(this).siblings("li").children("ul").removeClass("open").hide("fast",function(){ window.location.href=goto; });
					return false;
				}
			}
			/* if we got here this is level 3, so just go to link */
			window.location.href=goto;
			return false;
		}
	}); 
	/* work back from current href and turn on navigation tree for this page */
	$("#navbar a[href="+window.location.pathname+"]").each(function(){
		$(this).addClass("selected");
		/*
		if ($("#navbar a[href='/portfolio.htm']").parent("li").hasClass("selected")==true) {
		}
		*/
		if ($(this).parents("ul").length==1) {
			$(this).parents("li").children("ul").addClass("open").show();
		}	
		else if ($(this).parents("ul").length==2) {
			$(this).parents("li").children("ul").addClass("open").show();
			$(this).parents("ul").parents("li").children("ul").addClass("open").show();
		}	
		else if ($(this).parents("ul").length==3) {
			$(this).parents("li").children("ul").addClass("open").show();
			$(this).parents("ul").parents("li").children("ul").addClass("open").show();
			$(this).parents("ul").parents("ul").parents("li").children("ul").addClass("open").show();
		}
		else if ($(this).parents("ul").length==4) {
			$(this).parents("li").parents("ul").children("ul").addClass("open").show();
			$(this).parents("ul").parents("ul").parents("li").children("ul").addClass("open").show();
			$(this).parents("ul").parents("ul").parents("ul").parents("li").children("ul").addClass("open").show();
		}
	});	
}

function pages(titles,links){
	var i="";
	var titles=[
		"Television",
		"Awards",
		"Why Fourth Wall Events?",
		"Creative",
		"Government",
		"Conference",
		"Return on Results",
		"Outdoor",
		"Design",
		"Corporate"
		];
	var urls=[	
		"/television2.htm",
		"/awards2.htm",
		"/whychoose.htm",
		"/creative.htm",
		"/government2.htm",
		"/conferences.htm",
		"/return.htm",
		"/outdoor2.htm",
		"/design2.htm",
		"/corporate2.htm"
		];
	if ($("#pages").length!=0){
		i=i+"<ul>";
		$.each(titles,function(key,value) {
			href=urls[key];
			img=href.toLowerCase();
			img=img.substring(1,img.indexOf(".htm"));
			tests.length=0;
			getlinks(img); /* need to find out how many images there are for this page to choose a random one - we don't use the links though, just the pics */
			i=i+"<li><div class=\"img\"><a href=\""+href+"\"><img src=\"images/172x96/"+img+"-"+Math.ceil(Math.random()*tests.length)+".jpg\"></a></div><p><a href=\""+href+"\">"+value+"</a></p></li>";
		});
		i=i+"</ul>";
		$("#pages").html(i);
	}
}

function caseshome(){
	var i="";
	if ($("#caseshome").length!=0){
		i=i+"<ul>";
		$("#navbar a[href='/projects.htm'],#navbar a[href='/industry.htm']").parent("li").children("ul").children("li").each(function(){
			categoryname=$(this).children("a").html();
			categoryname=$.trim(categoryname);
			right=$(this).children("ul").children("li").length-1;
			$(this).children("ul").children("li").each(function(index){
				if(index==0){
					i=i+"<li style=\"padding-left:10px;\">";
					i=i+"<span class=\"left\"></span>";
					i=i+"<span class=\"categoryname\">"+categoryname+"</span>";
				}
				else if(index==right){
					i=i+"<li style=\"margin-right:10px;padding-right:10px;\">";
					i=i+"<span class=\"right\"></span>";
				}
				else {
					i=i+"<li>";
				}
				href=$(this).children("a").attr("href");
				html=$(this).children("a").html();
				if (html=="So You Think You Can Dance") html="So You Think You<br/>Can Dance";
				if (html=="Australian Construction Achievement Award") html="ACA Award";
				if (html=="Launch of Tourism Australia’s Campaign") html="Tourism Australia Launch";
				img=href.toLowerCase();
				img=img.substring(1,img.indexOf(".htm"));
				i=i+"<div class=\"img\"><a href=\""+href+"\"><img src=\"images/78x43/"+img+"-1.jpg\" width=\"78\" height=\"43\"></a></div>";
				i=i+"<p><a href=\""+href+"\">"+html+"</a></p>";
				i=i+"</li>";
			});
		});
		i=i+"</ul>";
		$("#caseshome").html(i);
		$("#caseshome ul li").hover(function(){
			$(this).addClass("hover");
		},
		function(){
			$(this).removeClass("hover");
		});
	}
}

function cases(){
	if ($("#cases").length!=0){
		var i="";
		var category;
		var categoryname;
		$("#navbar a[href="+window.location.pathname+"]").parent("li").parent("ul").parent("li").children("a:first-child").addClass("selected");
		category=$("#navbar a[href="+window.location.pathname+"]").parent("li").parent("ul").parent("li").children("a:first-child").attr("href");
		categoryname=$("#navbar a[href="+category+"]").html();
		categoryname=$.trim(categoryname);
		i=i+"<ul>";
		$("#navbar a[href="+category+"]").parent("li").children("ul").children("li").each(function(index){
			href=$(this).children("a").attr("href");
			html=$(this).children("a").html();
			if (window.location.pathname==href){
				i=i+"<li class=\"selected\">";
			}
			else {
				i=i+"<li>";
			}
			if (html=="So You Think You Can Dance") html="So You Think You<br/>Can Dance";
			if (html=="Australian Construction Achievement Award") html="ACA Award";
			if (html=="Launch of Tourism Australia’s Campaign") html="Tourism Australia Launch";
			img=href.toLowerCase();
			img=img.substring(1,img.indexOf(".htm"));
			i=i+"<div class=\"img\"><a href=\""+href+"\"><img src=\"images/78x43/"+img+"-1.jpg\" width=\"78\" height=\"43\"></a></div>";
			i=i+"<p><a href=\""+href+"\">"+html+"</a></p>";
			i=i+"</li>";
		});
		i=i+"</ul>";
		
		var totalthumbs;
		totalthumbs=$("#navbar a[href="+category+"]").parent("li").children("ul").children("li").length;
		if (totalthumbs<10) {
			$("#casesnextprev").hide();
		}
		
		$("#cases").html(i);
		$("#cases ul li").hover(function(){
			$(this).addClass("hover");
		},
		function(){
			$(this).removeClass("hover");
		});
	}
}

function portfoliobycategory(){
	var i="";
	if ($("#portfoliobycategory").length!=0){
		i=i+"<ul>";
		$("#navbar a[href='/projects.htm']").parent("li").children("ul").children("li").each(function(){
			href=$(this).children("a").attr("href");
			html=$(this).children("a").html();
			html=$.trim(html);
			img=href.toLowerCase();
			img=img.substring(1,img.indexOf(".htm"));
			i=i+"<li>";
			i=i+"<div class=\"img\"><a href=\""+href+"\"><img src=\"images/172x96/"+img+".jpg\" width=\"172\" height=\"96\"></a></div>";
			i=i+"<p><a href=\""+href+"\">"+html+"</a></p>";
			i=i+"</li>";
		});
		i=i+"</ul>";
		$("#portfoliobycategory").html(i);
	}
}

function portfoliobyindustry(){
	var i="";
	if ($("#portfoliobyindustry").length!=0){
		i=i+"<ul>";
		$("#navbar a[href='/industry.htm']").parent("li").children("ul").children("li").each(function(){
			href=$(this).children("a").attr("href");
			html=$(this).children("a").html();
			html=$.trim(html);
			img=href.toLowerCase();
			img=img.substring(1,img.indexOf(".htm"));
			i=i+"<li>";
			i=i+"<div class=\"img\"><a href=\""+href+"\"><img src=\"images/172x96/"+img+".jpg\" width=\"172\" height=\"96\"></a></div>";
			i=i+"<p><a href=\""+href+"\">"+html+"</a></p>";
			i=i+"</li>";
		});
		i=i+"</ul>";
		$("#portfoliobyindustry").html(i);
	}
}

function hero(){
	if ($("#hero").length!=0){
		var i="";
		var href=window.location.pathname;
		var img=href.toLowerCase();
		img=img.substring(1,img.indexOf(".htm"));
		getlinks(img);
		i=i+"<ul>";
		for(var j=0;j<links.length;j++){
			if(links[j]!=""){
				i=i+"<li><a href=\""+links[j]+"\"><img alt=\"\" src=\"images/462x259/"+img+"-"+(j+1)+".jpg\" width=\"462\" height=\"259\" /></a><div class=\"imagehider\"></div><span>"+tests[j]+"</span></li>";
			}
			else {
				i=i+"<li><img alt=\"\" src=\"images/462x259/"+img+"-"+(j+1)+".jpg\" width=\"462\" height=\"259\" /><div class=\"imagehider\"></div><span>"+tests[j]+"</span></li>";
			}
		}
		i=i+"</ul>";
		$("#hero").html(i);
		if(links.length>1){
			$("#hero ul").shuffle(); 
			$("#hero ul").innerfade({ 
				speed: 1000, 
				timeout: 10000,
				containerheight: "330px"
			});
		}
		/* can we append a div over the list item to obscure the image underneath? */
		
		
		/* may as well do the little links in the same place - they are the same images */
		var showon=[
				"/concepts.htm",
				"/design.htm",
				"/communication.htm",
				"/ideastorm.htm",
				"/assess.htm",
				"/approach.htm",
				"/evaluate.htm",
				"/return.htm",
				"/eventbible.htm",
				"/event.htm",
				"/corporate2.htm",
				"/government2.htm",
				"/awards2.htm",
				"/conferences.htm",
				"/outdoor2.htm",
				"/production.htm",
				"/design2.htm",
				"/television2.htm",
				"/cad.htm",
				"/custom.htm",
				"/web.htm",
				"/online.htm",
				"/csr.htm",
				"/ohands.htm"
			]
		if (jQuery.inArray(href,showon)!=-1) {	
			i="";
			i=i+"<hr size=\"1\" style=\"color:#ccc;\" />";
			i=i+"<p style=\"margin:8px 0 8px 0;\">Selected projects:</p>";
			i=i+"<ul id=\"projects\">";
			for(var j=0;j<links.length;j++){
				href=links[j];
				txt=$("#navbar a[href='"+href+"']").text();
				i=i+"<li>";
				i=i+"<div class=\"img\"><a href=\""+href+"\"><img alt=\"\" width=\"78\" height=\"43\" src=\"images/462x259/"+img+"-"+(j+1)+".jpg\" /></a></div>";
				i=i+"<p><a href=\""+href+"\">"+txt+"</a></p>";
				i=i+"</li>";
				if (j==3 || j==links.length){
					/* close list at 3 (4th pic) or last pic */
					i=i+"</ul>";
				}
				if (j==3 && links.length>4){
					/* new list at 3 (4th pic) only if this is not the last one anyway */
					i=i+"<ul id=\"projects\">";
				}
			}
			$("#biglinks").html(i);
		}
	}
}

function casehero(){
	if ($("#casehero").length!=0){
		var i="";
		var href=window.location.pathname;
		var img=href.toLowerCase();
		img=img.substring(1,img.indexOf(".htm"));
		/* hard code these values here for cases with < 7 images */
		var images=7;
		if (img=="beyonce") images=3;
		if (img=="beyonce2") images=3;
		if (img=="westpac") images=3;
		if (img=="westpac2") images=3;
		if (img=="westpac3") images=3;
		if (img=="westpac4") images=3;
		if (img=="optus3d") images=5;
		if (img=="optus3d2") images=5;
		if (img=="optus3d3") images=5;
		if (img=="rugbyworldcup") images=5;
		if (img=="rugbyworldcup2") images=5;
		if (img=="opera") images=5;
		if (img=="westpacpointspod") images=6;
		if (img=="westpacpointspod2") images=6;
		if (img=="westpacpointspod3") images=6;
		if (img=="westpacpointspod4") images=6;
		if (img=="foxcontender") images=6;
		if (img=="foxcontender2") images=6;
		if (img=="foxcontender3") images=6;
                if (img=="stc") images=4;
                if (img=="stc2") images=4;
		/* This is for scrolling, changed to fading 2010-11-11
		i=i+"<ul>";
		i=i+"<li><div class=\"img\"><img src=\"images/462x259/"+img+"-1.jpg\" width=\"462\" height=\"259\" /></div></li>";
		i=i+"<li><div class=\"img\"><img src=\"images/462x259/"+img+"-2.jpg\" width=\"462\" height=\"259\" /></div></li>";
		i=i+"<li><div class=\"img\"><img src=\"images/462x259/"+img+"-3.jpg\" width=\"462\" height=\"259\" /></div></li>";
		if (images>3){
			i=i+"<li><div class=\"img\"><img src=\"images/462x259/"+img+"-4.jpg\" width=\"462\" height=\"259\" /></div></li>";
		}
		if (images>4){
			i=i+"<li><div class=\"img\"><img src=\"images/462x259/"+img+"-5.jpg\" width=\"462\" height=\"259\" /></div></li>";
		}
		if (images>5){
			i=i+"<li><div class=\"img\"><img src=\"images/462x259/"+img+"-6.jpg\" width=\"462\" height=\"259\" /></div></li>";
		}
		if (images>6){
			i=i+"<li><div class=\"img\"><img src=\"images/462x259/"+img+"-7.jpg\" width=\"462\" height=\"259\" /></div></li>";
		}
		i=i+"</ul>";
		*/
		var i="";
		i=i+"<div id=\"greyborder\">";
		i=i+"<div id=\"whiteborder\">";
		i=i+"<div id=\"heroimage\">";
		i=i+"<div id=\"image\" style=\"background:url('images/462x259/"+img+"-1.jpg');\"><img src=\"images/462x259/"+img+"-1.jpg\" width=\"462\" height=\"259\" /></div>";
		i=i+"<div class=\"imagehider\"></div>";
		i=i+"</div>";
		i=i+"</div>";
		i=i+"</div>";
		$("#casehero").html(i);
		i="<div class=\"jcarousel-control\">";
		i=i+"<div id=\"thumb01\"><div class=\"img selected\"><div class=\"img2 selected\"><a href=\"#\" rel=\"1\"><img src=\"images/462x259/"+img+"-1.jpg\" width=\"60\" height=\"33\" /></a></div></div></div>";
		i=i+"<div id=\"thumb02\"><div class=\"img\"><div class=\"img2\"><a href=\"#\" rel=\"2\"><img src=\"images/462x259/"+img+"-2.jpg\" width=\"60\" height=\"33\" /></a></div></div></div>";
		i=i+"<div id=\"thumb03\"><div class=\"img\"><div class=\"img2\"><a href=\"#\" rel=\"3\"><img src=\"images/462x259/"+img+"-3.jpg\" width=\"60\" height=\"33\" /></a></div></div></div>";
		if (images>3){
			i=i+"<div id=\"thumb04\"><div class=\"img\"><div class=\"img2\"><a href=\"#\" rel=\"4\"><img src=\"images/462x259/"+img+"-4.jpg\" width=\"60\" height=\"33\" /></a></div></div></div>";
		}
		if (images>4){
			i=i+"<div id=\"thumb05\"><div class=\"img\"><div class=\"img2\"><a href=\"#\" rel=\"5\"><img src=\"images/462x259/"+img+"-5.jpg\" width=\"60\" height=\"33\" /></a></div></div></div>";
		}
		if (images>5){
			i=i+"<div id=\"thumb06\"><div class=\"img\"><div class=\"img2\"><a href=\"#\" rel=\"6\"><img src=\"images/462x259/"+img+"-6.jpg\" width=\"60\" height=\"33\" /></a></div></div></div>";
		}
		if (images>6){
			i=i+"<div id=\"thumb07\"><div class=\"img\"><div class=\"img2\"><a href=\"#\" rel=\"7\"><img src=\"images/462x259/"+img+"-7.jpg\" width=\"60\" height=\"33\" /></a></div></div></div>";
		}
		i=i+"</div>";
		$("#caseherothumbs").html(i);
	}
}

function tag(){
	if ($("#tags").length!=0){
		tagcounter++;
		$("#tags").hide();
		var i="";
		i=i+"<ul>";
		i=i+"<li><span>Highly&nbsp;</span><span>theatrical&nbsp;</span><span>experiences</span></li>";
		i=i+"<li><span>Hands&nbsp;</span><span>on&nbsp;</span><span>team</span></li>";
		i=i+"<li><span>Capture&nbsp;imaginations,&nbsp;</span><span>evoke&nbsp;emotions</span><span></span></li>";
		i=i+"<li><span>Unparalleled&nbsp;</span><span>experiences</span></li>";
		i=i+"<li><span>Attention&nbsp;</span><span>to&nbsp;every&nbsp;</span><span>detail</span></li>";
		i=i+"<li><span>Your&nbsp;</span><span>event&nbsp;</span><span>partners</span></li>";
		i=i+"<li><span>Transparent,&nbsp;</span><span>honest&nbsp;</span><span>communication</span></li>";
		i=i+"<li><span>We&nbsp;</span><span>love&nbsp;</span><span>events</span></li>";
		i=i+"<li><span>Investment&nbsp;</span><span>driven&nbsp;</span><span>results</span></li>";
		i=i+"<li><span>Connect&nbsp;</span><span>with&nbsp;your&nbsp;</span><span>audience</span></li>";
		i=i+"<li><span>Flexible,&nbsp;</span><span>proactive,&nbsp;</span><span>innovative</span></li>";
		i=i+"<li><span>Creative,&nbsp;</span><span>practical&nbsp;</span><span>ideas</span></li>";
		i=i+"<li><span>Bespoke&nbsp;</span><span>strategies</span></li>";
		i=i+"<li><span>Deliver&nbsp;</span><span>your&nbsp;messages&nbsp;</span><span>clearly</span></li>";
		i=i+"<li><span>Specialist&nbsp;suppliers&nbsp;</span><span>and&nbsp;production&nbsp;</span><span>partners</span></li>";
		i=i+"<li><span>Award&nbsp;winning&nbsp;</span><span>event&nbsp;and&nbsp;production&nbsp;</span><span>company</span></li>";
		i=i+"<li><span>Cultivate&nbsp;</span><span>real&nbsp;</span><span>connections</span></li>";
		i=i+"<li><span>On&nbsp;time&nbsp;</span><span>and&nbsp;on&nbsp;</span><span>budget</span></li>";
		i=i+"<li><span>Creative&nbsp;</span><span>communication</span></li>";
		i=i+"<li><span>Talk&nbsp;</span><span>of&nbsp;the&nbsp;</span><span>town</span></li>";
		i=i+"</ul>";
		$("#tags").html(i); 
		$("#tags ul").shuffle(); 
		$("#tag").html("<p>" + $("#tags li:first-child").html() + "</p>"); 
		if ((tagcounter % 3)==1){
			$("#tag").html("<p><span>Events,&nbsp;theatre,&nbsp;</span><span>television,&nbsp;social,&nbsp;</span><span>outdoor</span></p>"); 
		}
		$("#tag p span:eq(0)").css({"color":"white"}).animate({"color":"white"},300).animate({"color":"lightgrey"},1500);
		$("#tag p span:eq(1)").css({"color":"white"}).animate({"color":"white"},600).animate({"color":"lightgrey"},1500);
		$("#tag p span:eq(2)").css({"color":"white"}).animate({"color":"white"},900).animate({"color":"lightgrey"},1500);
		setTimeout("tag()",10000); 
	}
}

function fixnavbarbg(){
	$("#navbar ul").each(function(){
		$(this).children("li:last").children("a").css("background-image","url('images/bg_navbar_divider1.png')");
	});
}

function fixtitle(){
	currenttitle=$(document).attr("title");
	if (currenttitle.substring(0,18) != "Fourth Wall Events"){
		$(document).attr("title","Fourth Wall Events > " + currenttitle);
	}
}

function fixsearch(){
	if($("div.search-result").length!=0){
		$("div.search-result h3 a").click(function() {
			href=$(this).attr("href");
			if(href.indexOf("PageID=3672368")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/contact.htm") }
			if(href.indexOf("PageID=3796378")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/contact_thanks.htm") }
			if(href.indexOf("PageID=3672381")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/experience.htm") }
			if(href.indexOf("PageID=3674095")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/directors.htm") }
			if(href.indexOf("PageID=3672374")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/darren.htm") }
			if(href.indexOf("PageID=3672383")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/grant.htm") }
			if(href.indexOf("PageID=3672551")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/jeremy.htm") }
			if(href.indexOf("PageID=3672377")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/environment.htm") }
			if(href.indexOf("PageID=3672372")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/CSR.htm") }
			if(href.indexOf("PageID=3672404")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/ohands.htm") }
			if(href.indexOf("PageID=3756454")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/whychoose.htm") }
			if(href.indexOf("PageID=3672384")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/home.htm") }
			if(href.indexOf("PageID=3672399")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/more.htm") }
			if(href.indexOf("PageID=3672364")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/awardsmore.htm") }
			if(href.indexOf("PageID=3672400")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/fourthestate.htm") }
			if(href.indexOf("PageID=3796511")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/fourthestate_thanks.htm") }
			if(href.indexOf("PageID=3672416")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/testimonials.htm") }
			if(href.indexOf("PageID=3675853")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/offering.htm") }
			if(href.indexOf("PageID=3672371")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/creative.htm") }
			if(href.indexOf("PageID=3672366")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/concepts.htm") }
			if(href.indexOf("PageID=3672365")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/communication.htm") }
			if(href.indexOf("PageID=3672375")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/design.htm") }
			if(href.indexOf("PageID=3672385")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/ideastorm.htm") }
			if(href.indexOf("PageID=3672398")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/management.htm") }
			if(href.indexOf("PageID=3693456")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/awards2.htm") }
			if(href.indexOf("PageID=3672367")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/conferences.htm") }
			if(href.indexOf("PageID=3693451")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/corporate2.htm") }
			if(href.indexOf("PageID=3672379")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/event.htm") }
			if(href.indexOf("PageID=3693470")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/government2.htm") }
			if(href.indexOf("PageID=3693486")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/outdoor2.htm") }
			if(href.indexOf("PageID=3672409")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/production.htm") }
			if(href.indexOf("PageID=3672411")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/strategy.htm") }
			if(href.indexOf("PageID=3672359")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/approach.htm") }
			if(href.indexOf("PageID=3672361")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/assess.htm") }
			if(href.indexOf("PageID=3672378")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/evaluate.htm") }
			if(href.indexOf("PageID=3672380")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/eventbible.htm") }
			if(href.indexOf("PageID=3672410")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/return.htm") }
			if(href.indexOf("PageID=3672413")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/technical.htm") }
			if(href.indexOf("PageID=3693519")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/design2.htm") }
			if(href.indexOf("PageID=3693523")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/cad.htm") }
			if(href.indexOf("PageID=3693528")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/custom.htm") }
			if(href.indexOf("PageID=3693521")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/television2.htm") }
			if(href.indexOf("PageID=3672405")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/online.htm") }
			if(href.indexOf("PageID=3672417")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/web.htm") }
			if(href.indexOf("PageID=3672407")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/portfolio.htm") }
			if(href.indexOf("PageID=3672757")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/arias.htm") }
			if(href.indexOf("PageID=3673957")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/constructionachievement.htm") }
			if(href.indexOf("PageID=3673979")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/awardawards.htm") }
			if(href.indexOf("PageID=4058964")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/eureka2.htm") }
			if(href.indexOf("PageID=3672767")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/tamworth.htm") }
			if(href.indexOf("PageID=3674061")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/exportawards.htm") }
			if(href.indexOf("PageID=3672803")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/goodfoodguide.htm") }
			if(href.indexOf("PageID=3674066")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/rugbyworldcup.htm") }
			if(href.indexOf("PageID=3672402")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/nickelodeon.htm") }
			if(href.indexOf("PageID=3672362")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/awardscategory.htm") }
			if(href.indexOf("PageID=3791572")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/tourismaustralia2.htm") }
			if(href.indexOf("PageID=3791548")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/sheraton2.htm") }
			if(href.indexOf("PageID=3804504")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/masdar4.htm") }
			if(href.indexOf("PageID=3791557")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/trinny4.htm") }
			if(href.indexOf("PageID=3791561")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/westpac3.htm") }
			if(href.indexOf("PageID=3804508")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/westpacpointspod4.htm") }
			if(href.indexOf("PageID=3791869")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/brandexperience.htm") }
			if(href.indexOf("PageID=3788703")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/lifehouse2.htm") }
			if(href.indexOf("PageID=3791367")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/dreamball2.htm") }
			if(href.indexOf("PageID=3791288")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/zoofari2.htm") }
			if(href.indexOf("PageID=3788701")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/charity.htm") }
			if(href.indexOf("PageID=3791536")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/abbott2.htm") }
			if(href.indexOf("PageID=3791543")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/seniorexecutive2.htm") }
			if(href.indexOf("PageID=3791839")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/conference.htm") }
			if(href.indexOf("PageID=3674095")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/abbott.htm") }
			if(href.indexOf("PageID=4059158")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/foxcontender3.htm") }
			if(href.indexOf("PageID=4059193")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/jpmorgan2.htm") }
			if(href.indexOf("PageID=3679741")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/masdar2.htm") }
			if(href.indexOf("PageID=3674101")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/mckennabourbon.htm") }
			if(href.indexOf("PageID=4059119")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/ofest3.htm") }
			if(href.indexOf("PageID=3674093")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/optus3d.htm") }
			if(href.indexOf("PageID=3674083")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/optus.htm") }
			if(href.indexOf("PageID=3674098")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/seniorexecutive.htm") }
			if(href.indexOf("PageID=3791624")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/seniorexecutive3.htm") }
			if(href.indexOf("PageID=3674089")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/sheraton.htm") }
			if(href.indexOf("PageID=3674081")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/trinny.htm") }
			if(href.indexOf("PageID=3674087")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/westpac.htm") }
			if(href.indexOf("PageID=3674109")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/westpacpointspod.htm") }
			if(href.indexOf("PageID=3672369")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/corporate.htm") }
			if(href.indexOf("PageID=3674015")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/carols.htm") }
			if(href.indexOf("PageID=4044028")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/foxcontender.htm") }
			if(href.indexOf("PageID=4069569")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/mardigras7.htm") }
			if(href.indexOf("PageID=3674072")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/masdar.htm") }
			if(href.indexOf("PageID=4044058")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/ofest.htm") }
			if(href.indexOf("PageID=3674043")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/royaleastershow.htm") }
			if(href.indexOf("PageID=4059044")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/unisyd4.htm") }
			if(href.indexOf("PageID=3674028")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/mardigras.htm") }
			if(href.indexOf("PageID=3672406")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/outdoor.htm") }
			if(href.indexOf("PageID=3791531")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/amazingrace2.htm") }
			if(href.indexOf("PageID=3791525")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/mckennabourbon2.htm") }
			if(href.indexOf("PageID=4059129")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/ofest4.htm") }
			if(href.indexOf("PageID=3791462")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/optus3d2.htm") }
			if(href.indexOf("PageID=3790689")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/trinny3.htm") }
			if(href.indexOf("PageID=3791519")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/westpac2.htm") }
			if(href.indexOf("PageID=3790586")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/roadshows.htm") }
			if(href.indexOf("PageID=3675396")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/bvlgari.htm") }
			if(href.indexOf("PageID=3675569")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/lifehouse.htm") }
			if(href.indexOf("PageID=3675397")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/dreamball.htm") }
			if(href.indexOf("PageID=4043034")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/mardigras2.htm") }
			if(href.indexOf("PageID=3675572")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/phantom.htm") }
			if(href.indexOf("PageID=4059036")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/unisyd3.htm") }
			if(href.indexOf("PageID=3675570")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/zoofari.htm") }
			if(href.indexOf("PageID=3679297")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/social.htm") }
			if(href.indexOf("PageID=3674176")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/amazingrace.htm") }
			if(href.indexOf("PageID=3679665")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/arias2.htm") }
			if(href.indexOf("PageID=3675581")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/nexttopmodel.htm") }
			if(href.indexOf("PageID=3675577")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/beyonce.htm") }
			if(href.indexOf("PageID=3679457")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/carols2.htm") }
			if(href.indexOf("PageID=4058978")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/eureka3.htm") }
			if(href.indexOf("PageID=4059150")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/foxcontender2.htm") }
			if(href.indexOf("PageID=3684437")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/rugbyworldcup2.htm") }
			if(href.indexOf("PageID=3674179")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/mtv.htm") }
			if(href.indexOf("PageID=3679481")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/nickelodeon2.htm") }
			if(href.indexOf("PageID=3675575")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/topgear.htm") }
			if(href.indexOf("PageID=3674145")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/soyouthinkyoucandance.htm") }
			if(href.indexOf("PageID=3679663")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/tamworth2.htm") }
			if(href.indexOf("PageID=3679443")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/trinny2.htm") }
			if(href.indexOf("PageID=3672415")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/television.htm") }
			if(href.indexOf("PageID=4059236")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/mardigras4.htm") }
			if(href.indexOf("PageID=3675395")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/nida.htm") }
			if(href.indexOf("PageID=3675392")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/opera.htm") }
			if(href.indexOf("PageID=3804515")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/phantom3.htm") }
			if(href.indexOf("PageID=4044074")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/unisyd.htm") }
			if(href.indexOf("PageID=3679304")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/theatre.htm") }
			if(href.indexOf("PageID=3679217")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/projects.htm") }
			if(href.indexOf("PageID=3679396")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/constructionachievement2.htm") }
			if(href.indexOf("PageID=3679425")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/awardawards2.htm") }
			if(href.indexOf("PageID=4069636")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/mardigras8.htm") }
			if(href.indexOf("PageID=4059228")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/mardigras3.htm") }
			if(href.indexOf("PageID=4059275")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/mardigras5.htm") }
			if(href.indexOf("PageID=3679252")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/associations.htm") }
			if(href.indexOf("PageID=3791702")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/awardawards3.htm") }
			if(href.indexOf("PageID=3791718")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/goodfoodguide2.htm") }
			if(href.indexOf("PageID=4059104")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/ofest2.htm") }
			if(href.indexOf("PageID=3791689")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/optus3d3.htm") }
			if(href.indexOf("PageID=3791685")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/optus2.htm") }
			if(href.indexOf("PageID=3791708")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/topgear2.htm") }
			if(href.indexOf("PageID=3791981")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/communication2.htm") }
			if(href.indexOf("PageID=3791581")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/abbott3.htm") }
			if(href.indexOf("PageID=3804545")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/mckennabourbon4.htm") }
			if(href.indexOf("PageID=3791616")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/mckennabourbon3.htm") }
			if(href.indexOf("PageID=3791604")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/phantom2.htm") }
			if(href.indexOf("PageID=3791576")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/sheraton3.htm") }
			if(href.indexOf("PageID=3791594")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/masdar3.htm") }
			if(href.indexOf("PageID=3791904")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/corporate3.htm") }
			if(href.indexOf("PageID=3791665")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/nexttopmodel2.htm") }
			if(href.indexOf("PageID=3791674")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/beyonce2.htm") }
			if(href.indexOf("PageID=3791652")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/bvlgari2.htm") }
			if(href.indexOf("PageID=3791640")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/trinny5.htm") }
			if(href.indexOf("PageID=3791959")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/fashion.htm") }
			if(href.indexOf("PageID=4043977")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/jpmorgan.htm") }
			if(href.indexOf("PageID=3804516")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/phantom4.htm") }
			if(href.indexOf("PageID=3791634")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/westpac4.htm") }
			if(href.indexOf("PageID=3791630")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/westpacpointspod3.htm") }
			if(href.indexOf("PageID=3791937")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/financial.htm") }
			if(href.indexOf("PageID=3679709")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/exportawards2.htm") }
			if(href.indexOf("PageID=4044230")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/eureka.htm") }
			if(href.indexOf("PageID=3674114")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/tourismaustralia.htm") }
			if(href.indexOf("PageID=3815336")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/nida2.htm") }
			if(href.indexOf("PageID=3804518")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/topgear4.htm") }
			if(href.indexOf("PageID=4059022")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/unisyd2.htm") }
			if(href.indexOf("PageID=4059289")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/mardigras6.htm") }
			if(href.indexOf("PageID=3672382")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/government.htm") }
			if(href.indexOf("PageID=3791761")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/amazingrace3.htm") }
			if(href.indexOf("PageID=3791749")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/nexttopmodel3.htm") }
			if(href.indexOf("PageID=3791723")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/goodfoodguide3.htm") }
			if(href.indexOf("PageID=3791737")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/mtv2.htm") }
			if(href.indexOf("PageID=3791757")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/topgear3.htm") }
			if(href.indexOf("PageID=3791730")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/soyouthinkyoucandance2.htm") }
			if(href.indexOf("PageID=3792002")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/media.htm") }
			if(href.indexOf("PageID=3754882")>0){ $(this).attr("href","http://www.fourthwallevents.com.au/industry.htm") }
		});
	}
}
function carousel(){
    jQuery("#pages ul").jcarousel({									/* home page top */
        wrap: "circular",
        scroll:1,
		animation:1000,
		easing:"linear",
        initCallback: pagescarousel_initCallback,
        buttonNextHTML: null,
        buttonPrevHTML: null
    });
	jQuery("#caseshome ul").jcarousel({								/* home page bottom (case studies) */
		auto: 5,
        wrap: "circular",
		animation:1000,
		easing:"linear",
        scroll:1,
        initCallback: caseshomecarousel_initCallback,
        buttonNextHTML: null,
        buttonPrevHTML: null
    });
    jQuery("#portfoliobycategory ul").jcarousel({					/* portfolio landing page */
        wrap: "circular",
        scroll:1,
		animation:1000,
		easing:"linear",
        initCallback: portfoliobycategorycarousel_initCallback,
        buttonNextHTML: null,
        buttonPrevHTML: null
    });
    jQuery("#portfoliobyindustry ul").jcarousel({					/* portfolio landing page */
        wrap: "circular",
        scroll:1,
		animation:1000,
		easing:"linear",
        initCallback: portfoliobyindustrycarousel_initCallback,
        buttonNextHTML: null,
        buttonPrevHTML: null
    });
	jQuery("#cases ul").jcarousel({									/* portfolio bottom (case studies) */
        scroll:1,
		animation:500,
		easing:"linear",
        initCallback: casescarousel_initCallback,
        buttonNextHTML: null,
        buttonPrevHTML: null
    });
}
function pagescarousel_initCallback(carousel) {
    jQuery('.pagesnext').bind('click', function() {
        carousel.next();
        return false;
    });
    jQuery('.pagesprev').bind('click', function() {
        carousel.prev();
        return false;
    });
};
function caseshomecarousel_initCallback(carousel) {
    jQuery('.casesnext').bind('click', function() {
        carousel.startAuto(0);
		carousel.options.scroll=1;
		carousel.options.animation=500;
        carousel.next();
        return false;
    });
    jQuery('.casesprev').bind('click', function() {
        carousel.startAuto(0);
		carousel.options.scroll=1;
		carousel.options.animation=500;
        carousel.prev();
        return false;
    });
};
function portfoliobycategorycarousel_initCallback(carousel) {
    jQuery('.categorynext').bind('click', function() {
        carousel.next();
        return false;
    });
    jQuery('.categoryprev').bind('click', function() {
        carousel.prev();
        return false;
    });
};
function portfoliobyindustrycarousel_initCallback(carousel) {
    jQuery('.industrynext').bind('click', function() {
        carousel.next();
        return false;
    });
    jQuery('.industryprev').bind('click', function() {
        carousel.prev();
        return false;
    });
};
function casescarousel_initCallback(carousel) {
    jQuery('.casesnext').bind('click', function() {
        carousel.next();
        return false;
    });
    jQuery('.casesprev').bind('click', function() {
        carousel.prev();
        return false;
    });
};

function getlinks(page){
	if(page=="offering"){
		links[0]="/bvlgari.htm";
		tests[0]="<p>Large social media coverage and trade articles instantly set the new range at the top of everyone's minds. Some of Australia's top ambassadors enjoyed a rare experience of partying around the world's best jewels.</p>";
		links[1]="/nickelodeon.htm";
		tests[1]="<p>While the awards managed to slime everything possible the only thing smashed was the ratings with audience numbers above expectations and breaking new ground in award events. The show is now an award winning experience and many of the techniques have been adapted worldwide.</p>";
		links[2]="/optus.htm";
		tests[2]="<p>You produced an outstanding series of events working within strict budgetary and contextual guidelines. The relaxed and professional demeanour of the crew ensured the presenters were able to focus on the audience. You offered excellent advice, creative ideas and a range of options - as a client, I would recommend you to anyone planning a major event</p><p><strong>Optus Corporate Affairs</strong></p>";
		links[3]="/sheraton.htm";
		tests[3]="<p>Thanks for successfully doing GOOD for Sheraton.</p><p>Appreciate your flexibility in accommodating to the event needs, and the many changes required.  Thanks also for the reverse driving of milestones and deadlines.  It was a job well done.  We certainly found the right team to get the job done.</p><p><strong>Brand Director, Asia-Pacific<br/>Sheraton Hotels &amp; Resorts</strong></p>";
		links[4]="/soyouthinkyoucandance.htm";
		tests[4]="<p>Fourth Wall Events continue to be retained to deliver the production and have developed a strong working relationship with Fremantle Media.</p>";
	}
	if (page=="creative"){
		links[0]="/arias.htm";
		tests[0]="<p>The delivery achieved a world class standard in technical and staging, regardless of the complexity that comes with the integration of each element into the design; and in 2009 staging the live television event in the round. Each year Fourth Wall Events achieved the delivery for less budget but still the same quality and detail.</p>";
		links[1]="/arias.htm";
		tests[1]="<p>The delivery achieved a world class standard in technical and staging, regardless of the complexity that comes with the integration of each element into the design; and in 2009 staging the live television event in the round. Each year Fourth Wall Events achieved the delivery for less budget but still the same quality and detail.</p>";
		links[2]="/mardigras.htm";
		tests[2]="<p>I have had nothing but phenomenal reports back from all involved on the level of professionalism and skill that your team contributed.</p><p><strong>New Mardi Gras Parade</strong></p>";
		links[3]="/nexttopmodel.htm";
		tests[3]="<p>We have worked with Fourth Wall Event on the last 3 live finals of Australia’s next top model and we love them!  They are great at understanding and interpreting a concept and then realizing that vision in the most creative & imaginative way – all in time and on budget.  It’s so easy… I wouldn’t do a LIVE SHOW without them.</p><p><strong>ANTM Executive Producer<BR>Granada</strong></p>";
		links[4]="/zoofari.htm";
		tests[4]="<p>Thank you for your vision, patience and hard work. So many regular fundraising event goers have said that this was the best and most well run fundraising event they have ever been to.</p><p><strong>Events Officer<br/>Taronga Zoo</strong></p>";
	}
	if (page=="concepts"){
		links[0]="/royaleastershow.htm";
		tests[0]="<p>The show was a huge success. The characters Fourth Wall Events created became the backbone for the pre-show marketing campaign and were so successful that they were used again the following year to promote the Show. The spectacular received a standing ovation - the only Royal Easter Show Arena Show to achieve this, and generated widespread national and international media coverage.</p>";
		links[1]="/goodfoodguide.htm";
		tests[1]="<p>I especially wanted to acknowledge that as the new custodian of these awards, your expertise and professionalism was deeply appreciated. I am glad I had your team behind us, and the whole process of piecing it all together was a real pleasure to work with you all on.</p><p><strong>Trade Sponsorships, Events and Hospitality Manager, Trade Marketing and Strategic Insights<BR>Fairfax Media</strong></p>";
		links[2]="/lifehouse.htm";
		tests[2]="<p>Last night was truly amazing, to quote one of our board members &ldquo;It had the right mix of sorrow, reflection and inspiration and everyone I spoke to commented how moving the whole evening was.&rdquo; We all know that a wonderful evening like this does not just happen.</p><p><strong>Event Committee<br/>Lifehouse @ RPA</strong></p>";
		links[3]="/masdar.htm";
		tests[3]="<p>Our clients stayed in the Park Hyatt and had great joy in sending images back to their team showing the amazing installation. Guests talked about the anticipation of wanting to see what was inside as they had all had their attention grabbed each night by this glowing masterpiece.</p>";
		links[4]="/nickelodeon.htm";
		tests[4]="<p>It was the highest rating Nickelodeon Kids Choice Awards ever (highest rated program on all of Foxtel at the time!!!) and generated five times more publicity value than last year !!!!!!! It was a huge show! Thank you!</p><p><strong>Nickelodeon Network Producer</strong></p>";
	}
	if (page=="design"){
		links[0]="/nickelodeon.htm";
		tests[0]="<p>It was the highest rating Nickelodeon Kids Choice Awards ever (highest rated program on all of Foxtel at the time!!!) and generated five times more publicity value than last year !!!!!!! It was a huge show! Thank you!</p><p><strong>Nickelodeon Network Producer</strong></p>";
		links[1]="/zoofari.htm";
		tests[1]="<p>Everyone at the Zoo was very impressed by your approach and we look forward to working with you in the future.</p><p>Thanks for a great event.  Your style, flair and elegance lent us a much needed lift and yout supreme efficiency ensured that it was stress free!  What more can we ask for!</p><p><strong>Head of Fundraising &amp; Development<BR>Taronga Zoo</strong></p>";
		links[2]="/opera.htm";
		tests[2]="<p>Dinner on the Dock was very successful for us, and we've received some amazing comments from guests about the look and feel of the room. We are so grateful to have such a wonderful relationship with you.</p><p><strong>National Events Manager<BR>Opera Australia</strong></p>";
		links[3]="/nexttopmodel.htm";
		tests[3]="<p>We have worked with Fourth Wall Event on the last 3 live finals of Australia’s next top model and we love them!  They are great at understanding and interpreting a concept and then realizing that vision in the most creative & imaginative way – all in time and on budget.  It’s so easy… I wouldn’t do a LIVE SHOW without them.</p><p><strong>ANTM Executive Producer<BR>Granada</strong></p>";
		links[4]="/masdar.htm";
		tests[4]="<p>Our clients stayed in the Park Hyatt and had great joy in sending images back to their team showing the amazing installation.  Guests talked about the anticipation of wanting to see what was inside as they had all had their attention grabbed each night by this glowing masterpiece.</p>";
	}
	if (page=="communication"){
		links[0]="/constructionachievement.htm";
		tests[0]="<p>These awards are now seen as the &lsquo;Oscars&rsquo; of the construction industry and included The Premier of Queensland as the guest speaker on the evening.</p>";
		links[1]="/exportawards.htm";
		tests[1]="<p>...the feedback we received from guests was fantastic. We had very favourable comments on the theme of the room, the colours, the style and sophistication and audio visual presentation. As the finale and premiere event of the Australian Export Awards program, the Ceremony met and exceeded our expectations. Thank you.</p><p><strong>Manager, Major Events<BR>Austrade</strong></p>";
		links[2]="/masdar.htm";
		tests[2]="<p>Our clients stayed in the Park Hyatt and had great joy in sending images back to their team showing the amazing installation.  Guests talked about the anticipation of wanting to see what was inside as they had all had their attention grabbed each night by this glowing masterpiece.</p>";
		links[3]="/nida.htm";
		tests[3]="<p>You were a delight to work with and all of you managed to stay calm and good humoured throughout the entire process of planning and executing a complicated event, involving many players.</p><p><strong>Director / CEO<BR>The National Institute of Dramatic Art (NIDA)</strong></p>";
		links[4]="/optus3d.htm";
		tests[4]="<p>{The event was} delivered with an exceptional attention to detail and support. Your team have provided quick responses to requests, quality delivery of services and worked hard to deliver on your clients requests.</p><p><strong>Media Solutions <BR>Optus</strong></p>";
	}
	if (page=="ideastorm"){
		links[0]="/goodfoodguide.htm";
		tests[0]="<p>I've lost count of the number of people who told us last night and today that it was the best launch in the history of the Guide. &quot;Gushing praise&quot; sort of sums it up.</p><p>Everything that was wrong about last year was right about this year.</p><p><strong>Co-editor<br/>The Age Good Food Guide</strong></p>";
		links[1]="/lifehouse.htm";
		tests[1]="<p>Thank you so much for putting so much of yourselves into the dinner, Lifehouse is very fortunate to have the support of such a talented group of people with such generosity of spirit.</p><p>To the event team you did an outstanding job from start to finish, your professionalism and creativity is second to none.</p><p><strong>Event Committee<br/>Lifehouse @ RPA</strong></p>";
		links[2]="/mckennabourbon.htm";
		tests[2]="<p>Just thought I'd take this opportunity to say well in the build up and subsequent launch of McKenna Bourbon.</p><p>Word on the street at Lion Nathan is that it is a world class effort and there is a great deal of internal excitement from the leaders down for McKenna - we should all be very proud of this achievement.</p><p><strong>Brand Manager<br/>Lion Nathan Australia</strong></p>";
		links[3]="/nida.htm";
		tests[3]="<p>You were a delight to work with and all of you managed to stay calm and good humoured throughout the entire process of planning and executing a complicated event, involving many players.</p><p><strong>Director / CEO<BR>The National Institute of Dramatic Art (NIDA)</strong></p>";
		links[4]="/optus.htm";
		tests[4]="<p>You produced an outstanding series of events working within strict budgetary and contextual guidelines. The relaxed and professional demeanour of the crew ensured the presenters were able to focus on the audience. You offered excellent advice, creative ideas and a range of options - as a client, I would recommend you to anyone planning a major event</p><p><strong>Optus Corporate Affairs</strong></p>";
	}
	if (page=="strategy"){
		links[0]="/awardawards.htm";
		tests[0]="<p>The event has gone from one that was struggling to keep up with the pace of the industry to being the premier night in Australasia and now incorporates other, previously competitive award nights.  Sponsorship now involves the entire industry and the event has become a sell-out event.</p>";
		links[1]="/exportawards.htm";
		tests[1]="<p>...the feedback we received from guests was fantastic. We had very favourable comments on the theme of the room, the colours, the style and sophistication and audio visual presentation. As the finale and premiere event of the Australian Export Awards program, the Ceremony met and exceeded our expectations. Thank you.</p><p><strong>Manager, Major Events<BR>Austrade</strong></p>";
		links[2]="/rugbyworldcup.htm";
		tests[2]="<p>From a realistic recreation of a football field, to featured highlights of the cup and guest shots, the screen filled the room with a sense of energy and impact.  This was perfectly delivered for the over two million viewers who enjoyed the show and the eight hundred guests in the room.</p>";
		links[3]="/nickelodeon.htm";
		tests[3]="<p>While the awards managed to slime everything possible the only thing smashed was the ratings with audience numbers above expectations and breaking new ground in award events. The show is now an award winning experience and many of the techniques have been adapted worldwide.</p>";
	}
	if (page=="assess"){
		links[0]="/constructionachievement.htm";
		tests[0]="<p>These awards are now seen as the &lsquo;Oscars&rsquo; of the construction industry and included The Premier of Queensland as the guest speaker on the evening.</p>";
		links[1]="/westpac.htm";
		tests[1]="<p>It was Westpac's aim to achieve 100 new home loan applications through the campaign. It generated 1000 new leads which equates to over $300 million in new revenue.  The promotion also attracted substantial media coverage in consumer and industry publications.</p>";
		links[2]="/nickelodeon.htm";
		tests[2]="<p>While the awards managed to slime everything possible the only thing smashed was the ratings with audience numbers above expectations and breaking new ground in award events. The show is now an award winning experience and many of the techniques have been adapted worldwide.</p>";
		links[3]="/bvlgari.htm";
		tests[3]="<p>Large social media coverage and trade articles instantly set the new range at the top of everyone's minds. Some of Australia's top ambassadors enjoyed a rare experience of partying around the world's best jewels.</p>";
		links[4]="/mardigras.htm";
		tests[4]="<p>Nothing short of brilliance in my mind. I have worked with numerous professionals in my career, but I am inspired and motivated by your level of professionalism and commitment to delivering excellence.</p><p><strong>General Manager<br/>New Mardi Gras</strong></p>";
	}
	if (page=="approach"){
		links[0]="/arias.htm";
		tests[0]="<p>The delivery achieved a world class standard in technical and staging, regardless of the complexity that comes with the integration of each element into the design; and in 2009 staging the live television event in the round. Each year Fourth Wall Events achieved the delivery for less budget but still the same quality and detail.</p>";
		links[1]="/carols.htm";
		tests[1]="<p>This annual event continues to bring families together with Australia&rsquo;s and the world&rsquo;s brightest Christmas stars, and is one of the highlights of the festival season.</p>";
		links[2]="/mardigras.htm";
		tests[2]="<p>Nothing short of brilliance in my mind. I have worked with numerous professionals in my career, but I am inspired and motivated by your level of professionalism and commitment to delivering excellence.</p><p><strong>General Manager<br/>New Mardi Gras</strong></p>";
		links[3]="/mckennabourbon.htm";
		tests[3]="<p>Just thought I'd take this opportunity to say well in the build up and subsequent launch of McKenna Bourbon.</p><p>Word on the street at Lion Nathan is that it is a world class effort and there is a great deal of internal excitement from the leaders down for McKenna - we should all be very proud of this achievement.</p><p><strong>Brand Manager<br/>Lion Nathan Australia</strong></p>";
		links[4]="/nexttopmodel.htm";
		tests[4]="<p>Each year this show continues to be a ratings success and Fourth Wall Events are proud to support Granada Media in their delivery of the grand finale night.</p>";
	}
	if (page=="evaluate"){
		links[0]="/optus.htm";
		tests[0]="<p>You produced an outstanding series of events working within strict budgetary and contextual guidelines. The relaxed and professional demeanour of the crew ensured the presenters were able to focus on the audience. You offered excellent advice, creative ideas and a range of options - as a client, I would recommend you to anyone planning a major event</p><p><strong>Optus Corporate Affairs</strong></p>";
		links[1]="/sheraton.htm";
		tests[1]="<p>Thanks for successfully doing GOOD for Sheraton.</p><p>Appreciate your flexibility in accommodating to the event needs, and the many changes required.  Thanks also for the reverse driving of milestones and deadlines.  It was a job well done.  We certainly found the right team to get the job done.</p><p><strong>Brand Director, Asia-Pacific<br/>Sheraton Hotels &amp; Resorts</strong></p>";
		links[2]="/westpacpointspod.htm";
		tests[2]="<p>The Point Pod stand generated significant uptake of the Altitude credit card.  Westpac now also have a reusable asset that they can use to champion the brand.</p>";
		links[3]="/constructionachievement.htm";
		tests[3]="<p>These awards are now seen as the &lsquo;Oscars&rsquo; of the construction industry and included The Premier of Queensland as the guest speaker on the evening.</p>";
		links[4]="/exportawards.htm";
		tests[4]="<p>...the feedback we received from guests was fantastic. We had very favourable comments on the theme of the room, the colours, the style and sophistication and audio visual presentation. As the finale and premiere event of the Australian Export Awards program, the Ceremony met and exceeded our expectations. Thank you.</p><p><strong>Manager, Major Events<BR>Austrade</strong></p>";
	}
	if (page=="return"){
		links[0]="/arias.htm";
		tests[0]="<p>The delivery achieved a world class standard in technical and staging, regardless of the complexity that comes with the integration of each element into the design; and in 2009 staging the live television event in the round. Each year Fourth Wall Events achieved the delivery for less budget but still the same quality and detail.</p>";
		links[1]="/lifehouse.htm";
		tests[1]="<p>Last night was truly amazing, to quote one of our board members &ldquo;It had the right mix of sorrow, reflection and inspiration and everyone I spoke to commented how moving the whole evening was.&rdquo; We all know that a wonderful evening like this does not just happen.</p><p><strong>Event Committee<br/>Lifehouse @ RPA</strong></p>";
		links[2]="/mckennabourbon.htm";
		tests[2]="<p>Just thought I'd take this opportunity to say well in the build up and subsequent launch of McKenna Bourbon.</p><p>Word on the street at Lion Nathan is that it is a world class effort and there is a great deal of internal excitement from the leaders down for McKenna - we should all be very proud of this achievement.</p><p><strong>Brand Manager<br/>Lion Nathan Australia</strong></p>";
		links[3]="/nexttopmodel.htm";
		tests[3]="<p>Each year this show continues to be a ratings success and Fourth Wall Events are proud to support Granada Media in their delivery of the grand finale night.</p>";
		links[4]="/opera.htm";
		tests[4]="<p>Dinner on the Dock was very successful for us, and we've received some amazing comments from guests about the look and feel of the room. We are so grateful to have such a wonderful relationship with you.</p><p><strong>National Events Manager<BR>Opera Australia</strong></p>";
	}
	if (page=="eventbible"){
		links[0]="/seniorexecutive.htm";
		tests[0]="<p>The entire day ran without a hitch and the top minds of the country came and went in a low profile manner, which is exactly what the client wanted.</p>";
		links[1]="/opera.htm";
		tests[1]="<p>Dinner on the Dock was very successful for us, and we've received some amazing comments from guests about the look and feel of the room. We are so grateful to have such a wonderful relationship with you.</p><p><strong>National Events Manager<BR>Opera Australia</strong></p>";
		links[2]="/optus3d.htm";
		tests[2]="<p>{The event was} delivered with an exceptional attention to detail and support. Your team have provided quick responses to requests, quality delivery of services and worked hard to deliver on your clients requests.</p><p><strong>Media Solutions <BR>Optus</strong></p>";
		links[3]="/tamworth.htm";
		tests[3]="<p>The award event is now broadcast nationally on free to air and cable television and on live radio.  The new set and change of delivery of the awards has resulted in increased prestige and event following.</p>";
		links[4]="/westpac.htm";
		tests[4]="<p>It was Westpac's aim to achieve 100 new home loan applications through the campaign. It generated 1000 new leads which equates to over $300 million in new revenue.  The promotion also attracted substantial media coverage in consumer and industry publications.</p>";
	}
	if (page=="management"){
		links[0]="/arias.htm";
		tests[0]="<p>The delivery achieved a world class standard in technical and staging, regardless of the complexity that comes with the integration of each element into the design; and in 2009 staging the live television event in the round. Each year Fourth Wall Events achieved the delivery for less budget but still the same quality and detail.</p>";
		links[1]="/arias.htm";
		tests[1]="<p>The delivery achieved a world class standard in technical and staging, regardless of the complexity that comes with the integration of each element into the design; and in 2009 staging the live television event in the round. Each year Fourth Wall Events achieved the delivery for less budget but still the same quality and detail.</p>";
		links[2]="/bvlgari.htm";
		tests[2]="<p>Large social media coverage and trade articles instantly set the new range at the top of everyone's minds. Some of Australia's top ambassadors enjoyed a rare experience of partying around the world's best jewels.</p>";
		links[3]="/goodfoodguide.htm";
		tests[3]="<p>I especially wanted to acknowledge that as the new custodian of these awards, your expertise and professionalism was deeply appreciated. I am glad I had your team behind us, and the whole process of piecing it all together was a real pleasure to work with you all on.</p><p><strong>Trade Sponsorships, Events and Hospitality Manager, Trade Marketing and Strategic Insights<BR>Fairfax Media</strong></p>";
		links[4]="/topgear.htm";
		tests[4]="<p>The team did a fabulous job last night, and the comments that have been circulating are full of superlatives! From my perspective you honestly made the event - you are clearly at the top of your game, and your professionalism and incredible talent in creating, coordinating and executing such events is truly exceptional.</p><p><strong>Top Gear Australia Launch<br/>SBS</strong></p>";
	}
	if (page=="event"){
		links[0]="/topgear.htm";
		tests[0]="<p>The team did a fabulous job last night, and the comments that have been circulating are full of superlatives! From my perspective you honestly made the event - you are clearly at the top of your game, and your professionalism and incredible talent in creating, coordinating and executing such events is truly exceptional.</p><p><strong>Top Gear Australia Launch<br/>SBS</strong></p>";
		links[1]="/optus.htm";
		tests[1]="<p>You produced an outstanding series of events working within strict budgetary and contextual guidelines. The relaxed and professional demeanour of the crew ensured the presenters were able to focus on the audience. You offered excellent advice, creative ideas and a range of options - as a client, I would recommend you to anyone planning a major event</p><p><strong>Optus Corporate Affairs</strong></p>";
		links[2]="/mckennabourbon.htm";
		tests[2]="<p>Just thought I'd take this opportunity to say well in the build up and subsequent launch of McKenna Bourbon.</p><p>Word on the street at Lion Nathan is that it is a world class effort and there is a great deal of internal excitement from the leaders down for McKenna - we should all be very proud of this achievement.</p><p><strong>Brand Manager<br/>Lion Nathan Australia</strong></p>";
		links[3]="/nida.htm";
		tests[3]="<p>You were a delight to work with and all of you managed to stay calm and good humoured throughout the entire process of planning and executing a complicated event, involving many players.</p><p><strong>Director / CEO<BR>The National Institute of Dramatic Art (NIDA)</strong></p>";
		links[4]="/dreamball.htm";
		tests[4]="<p>The huge fundraising effort brings together a large live auction, huge silent auction and donation system that directly changes the lives of cancer sufferers.  Year on year this has increased and Fourth Wall Events have enjoyed the relationship and giving back to the community.</p>";
	}
	if (page=="corporate2"){
		links[0]="/masdar.htm";
		tests[0]="<p>Our clients stayed in the Park Hyatt and had great joy in sending images back to their team showing the amazing installation.  Guests talked about the anticipation of wanting to see what was inside as they had all had their attention grabbed each night by this glowing masterpiece.</p>";
		links[1]="/optus.htm";
		tests[1]="<p>You produced an outstanding series of events working within strict budgetary and contextual guidelines. The relaxed and professional demeanour of the crew ensured the presenters were able to focus on the audience. You offered excellent advice, creative ideas and a range of options - as a client, I would recommend you to anyone planning a major event</p><p><strong>Optus Corporate Affairs</strong></p>";
		links[2]="/phantom.htm";
		tests[2]="<p>You are a truly professional organisation and continually raise the bar in regards to the quality of service and delivery. I have no hesitation in recommending you to any corporate who wants to feel 100% comfortable in staging an event</p><p><strong>JPMorgan</strong></p>";
		links[3]="/sheraton.htm";
		tests[3]="<p>Thanks for successfully doing GOOD for Sheraton.</p><p>Appreciate your flexibility in accommodating to the event needs, and the many changes required.  Thanks also for the reverse driving of milestones and deadlines.  It was a job well done.  We certainly found the right team to get the job done.</p><p><strong>Brand Director, Asia-Pacific<br/>Sheraton Hotels &amp; Resorts</strong></p>";
		links[4]="/optus3d.htm";
		tests[4]="<p>{The event was} delivered with an exceptional attention to detail and support. Your team have provided quick responses to requests, quality delivery of services and worked hard to deliver on your clients requests.</p><p><strong>Media Solutions <BR>Optus</strong></p>";
	}
	if (page=="government2"){
		links[0]="/exportawards.htm";
		tests[0]="<p>...the feedback we received from guests was fantastic. We had very favourable comments on the theme of the room, the colours, the style and sophistication and audio visual presentation. As the finale and premiere event of the Australian Export Awards program, the Ceremony met and exceeded our expectations. Thank you.</p><p><strong>Manager, Major Events<BR>Austrade</strong></p>";
		links[1]="/topgear.htm";
		tests[1]="<p>The team did a fabulous job last night, and the comments that have been circulating are full of superlatives! From my perspective you honestly made the event - you are clearly at the top of your game, and your professionalism and incredible talent in creating, coordinating and executing such events is truly exceptional.</p><p><strong>Top Gear Australia Launch<br/>SBS</strong></p>";
		links[2]="/tourismaustralia.htm";
		tests[2]="<p>Media coverage of the event was high with Channel 7 using the Boab tree to do a live cross reaching hundreds of thousands of people.  Guests took away a greater understanding and awareness of the new campaign and Tourism Australia's new strategy.</p>";
		links[3]="/zoofari.htm";
		tests[3]="<p>Thank you for your vision, patience and hard work. So many regular fundraising event goers have said that this was the best and most well run fundraising event they have ever been to.</p><p><strong>Events Officer<br/>Taronga Zoo</strong></p>";
		links[4]="/tamworth.htm";
		tests[4]="<p>The award event is now broadcast nationally on free to air and cable television and on live radio.  The new set and change of delivery of the awards has resulted in increased prestige and event following.</p>";
	}
	if (page=="awards2"){
		links[0]="/arias.htm";
		tests[0]="<p>The delivery achieved a world class standard in technical and staging, regardless of the complexity that comes with the integration of each element into the design; and in 2009 staging the live television event in the round. Each year Fourth Wall Events achieved the delivery for less budget but still the same quality and detail.</p>";
		links[1]="/awardawards.htm";
		tests[1]="<p>The event has gone from one that was struggling to keep up with the pace of the industry to being the premier night in Australasia and now incorporates other, previously competitive award nights.  Sponsorship now involves the entire industry and the event has become a sell-out event.</p>";
		links[2]="/goodfoodguide.htm";
		tests[2]="<p>I've lost count of the number of people who told us last night and today that it was the best launch in the history of the Guide. &quot;Gushing praise&quot; sort of sums it up.</p><p>Everything that was wrong about last year was right about this year.</p><p><strong>Co-editor<br/>The Age Good Food Guide</strong></p>";
		links[3]="/nickelodeon.htm";
		tests[3]="<p>It was the highest rating Nickelodeon Kids Choice Awards ever (highest rated program on all of Foxtel at the time!!!) and generated five times more publicity value than last year !!!!!!! It was a huge show! Thank you!</p><p><strong>Nickelodeon Network Producer</strong></p>";
		links[4]="/tamworth.htm";
		tests[4]="<p>The award event is now broadcast nationally on free to air and cable television and on live radio.  The new set and change of delivery of the awards has resulted in increased prestige and event following.</p>";
	}
	if (page=="conferences"){
		links[0]="/abbott.htm";
		tests[0]="<p>The conference committee all agreed that the delivery enabled the main message to be clearly communicated and left the team in no doubt about the objective of the week and the future of Abbott.</p>";
		links[1]="/optus.htm";
		tests[1]="<p>You produced an outstanding series of events working within strict budgetary and contextual guidelines. The relaxed and professional demeanour of the crew ensured the presenters were able to focus on the audience. You offered excellent advice, creative ideas and a range of options - as a client, I would recommend you to anyone planning a major event</p><p><strong>Optus Corporate Affairs</strong></p>";
		links[2]="/mckennabourbon.htm";
		tests[2]="<p>Just thought I'd take this opportunity to say well in the build up and subsequent launch of McKenna Bourbon.</p><p>Word on the street at Lion Nathan is that it is a world class effort and there is a great deal of internal excitement from the leaders down for McKenna - we should all be very proud of this achievement.</p><p><strong>Brand Manager<br/>Lion Nathan Australia</strong></p>";
		links[3]="/westpac.htm";
		tests[3]="<p>It was Westpac's aim to achieve 100 new home loan applications through the campaign. It generated 1000 new leads which equates to over $300 million in new revenue.  The promotion also attracted substantial media coverage in consumer and industry publications.</p>";
	}
	if (page=="outdoor2"){
		links[0]="/carols.htm";
		tests[0]="<p>This annual event continues to bring families together with Australia&rsquo;s and the world&rsquo;s brightest Christmas stars, and is one of the highlights of the festival season.</p>";
		links[1]="/mardigras.htm";
		tests[1]="<p>The Festival was perfectly delivered for the New Mardi Gras as it was profitable and sustainable for future years, while bringing together some of the biggest stars for an amazing party and celebration. The parade in 2009 had nine thousand five hundred participants, one hundred and thirty four floats and was the largest in its&rsquo; history.</p>";
		links[2]="/royaleastershow.htm";
		tests[2]="<p>The show was a huge success. The characters Fourth Wall Events created became the backbone for the pre-show marketing campaign and were so successful that they were used again the following year to promote the Show.  The spectacular received a standing ovation &ndash; the only Royal Easter Show Arena Show to achieve this, and generated widespread national and international media coverage.</p>";
		links[3]="/masdar.htm";
		tests[3]="<p>Our clients stayed in the Park Hyatt and had great joy in sending images back to their team showing the amazing installation.  Guests talked about the anticipation of wanting to see what was inside as they had all had their attention grabbed each night by this glowing masterpiece.</p>";
		links[4]="/zoofari.htm";
		tests[4]="<p>Thank you for your vision, patience and hard work. So many regular fundraising event goers have said that this was the best and most well run fundraising event they have ever been to.</p><p><strong>Events Officer<br/>Taronga Zoo</strong></p>";
	}
	if (page=="production"){
		links[0]="/arias.htm";
		tests[0]="<p>The delivery achieved a world class standard in technical and staging, regardless of the complexity that comes with the integration of each element into the design; and in 2009 staging the live television event in the round. Each year Fourth Wall Events achieved the delivery for less budget but still the same quality and detail.</p>";
		links[1]="/mckennabourbon.htm";
		tests[1]="<p>Just thought I'd take this opportunity to say well in the build up and subsequent launch of McKenna Bourbon.</p><p>Word on the street at Lion Nathan is that it is a world class effort and there is a great deal of internal excitement from the leaders down for McKenna - we should all be very proud of this achievement.</p><p><strong>Brand Manager<br/>Lion Nathan Australia</strong></p>";
		links[2]="/nexttopmodel.htm";
		tests[2]="<p>We have worked with Fourth Wall Event on the last 3 live finals of Australia’s next top model and we love them!  They are great at understanding and interpreting a concept and then realizing that vision in the most creative & imaginative way – all in time and on budget.  It’s so easy… I wouldn’t do a LIVE SHOW without them.</p><p><strong>ANTM Executive Producer<BR>Granada</strong></p>";
		links[3]="/tamworth.htm";
		tests[3]="<p>The award event is now broadcast nationally on free to air and cable television and on live radio.  The new set and change of delivery of the awards has resulted in increased prestige and event following.</p>";
		links[4]="/westpac.htm";
		tests[4]="<p>It was Westpac's aim to achieve 100 new home loan applications through the campaign. It generated 1000 new leads which equates to over $300 million in new revenue.  The promotion also attracted substantial media coverage in consumer and industry publications.</p>";
	}
	if (page=="technical"){
		links[0]="/arias.htm";
		tests[0]="<p>The delivery achieved a world class standard in technical and staging, regardless of the complexity that comes with the integration of each element into the design; and in 2009 staging the live television event in the round. Each year Fourth Wall Events achieved the delivery for less budget but still the same quality and detail.</p>";
		links[1]="/goodfoodguide.htm";
		tests[1]="<p>I've lost count of the number of people who told us last night and today that it was the best launch in the history of the Guide. &quot;Gushing praise&quot; sort of sums it up.</p><p>Everything that was wrong about last year was right about this year.</p><p><strong>Co-editor<br/>The Age Good Food Guide</strong></p>";
		links[2]="/nickelodeon.htm";
		tests[2]="<p>It was the highest rating Nickelodeon Kids Choice Awards ever (highest rated program on all of Foxtel at the time!!!) and generated five times more publicity value than last year !!!!!!! It was a huge show! Thank you!</p><p><strong>Nickelodeon Network Producer</strong></p>";
		links[3]="/nickelodeon.htm";
		tests[3]="<p>While the awards managed to slime everything possible the only thing smashed was the ratings with audience numbers above expectations and breaking new ground in award events. The show is now an award winning experience and many of the techniques have been adapted worldwide.</p>";
	}
	if (page=="design2"){
		links[0]="/nickelodeon.htm";
		tests[0]="<p>It was the highest rating Nickelodeon Kids Choice Awards ever (highest rated program on all of Foxtel at the time!!!) and generated five times more publicity value than last year !!!!!!! It was a huge show! Thank you!</p><p><strong>Nickelodeon Network Producer</strong></p>";
		links[1]="/zoofari.htm";
		tests[1]="<p>Everyone at the Zoo was very impressed by your approach and we look forward to working with you in the future.</p><p>Thanks for a great event.  Your style, flair and elegance lent us a much needed lift and yout supreme efficiency ensured that it was stress free!  What more can we ask for!</p><p><strong>Head of Fundraising &amp; Development<BR>Taronga Zoo</strong></p>";
		links[2]="/opera.htm";
		tests[2]="<p>The fundraising events covered everything from marquees in the Hunter Valley in the middle of vineyards to changing studios in Channel 7 and were delivered in black tie style and always focused on the primary objective of raising funds for the Opera.</p>";
		links[3]="/nexttopmodel.htm";
		tests[3]="<p>We have worked with Fourth Wall Event on the last 3 live finals of Australia’s next top model and we love them!  They are great at understanding and interpreting a concept and then realizing that vision in the most creative & imaginative way – all in time and on budget.  It’s so easy… I wouldn’t do a LIVE SHOW without them.</p><p><strong>ANTM Executive Producer<BR>Granada</strong></p>";
		links[4]="/masdar.htm";
		tests[4]="<p>Our clients stayed in the Park Hyatt and had great joy in sending images back to their team showing the amazing installation.  Guests talked about the anticipation of wanting to see what was inside as they had all had their attention grabbed each night by this glowing masterpiece.</p>";
	}
	if (page=="television2"){
		links[0]="/arias.htm";
		tests[0]="<p>The delivery achieved a world class standard in technical and staging, regardless of the complexity that comes with the integration of each element into the design; and in 2009 staging the live television event in the round. Each year Fourth Wall Events achieved the delivery for less budget but still the same quality and detail.</p>";
		links[1]="/beyonce.htm";
		tests[1]="<p>As usual with any megastar there are last minute changes made by the record label, management and local promoter; these were handled with the usual flair and flexibility that Fourth Wall Events are renowned for.</p>";
		links[2]="/carols.htm";
		tests[2]="<p>This annual event continues to bring families together with Australia&rsquo;s and the world&rsquo;s brightest Christmas stars, and is one of the highlights of the festival season.</p>";
		links[3]="/nexttopmodel.htm";
		tests[3]="<p>We have worked with Fourth Wall Event on the last 3 live finals of Australia’s next top model and we love them!  They are great at understanding and interpreting a concept and then realizing that vision in the most creative & imaginative way – all in time and on budget.  It’s so easy… I wouldn’t do a LIVE SHOW without them.</p><p><strong>ANTM Executive Producer<BR>Granada</strong></p>";
		links[4]="/soyouthinkyoucandance.htm";
		tests[4]="<p>Fourth Wall Events continue to be retained to deliver the production and have developed a strong working relationship with Fremantle Media.</p>";
	}
	if (page=="cad"){
		links[0]="/masdar.htm";
		tests[0]="<p>Our clients stayed in the Park Hyatt and had great joy in sending images back to their team showing the amazing installation.  Guests talked about the anticipation of wanting to see what was inside as they had all had their attention grabbed each night by this glowing masterpiece.</p>";
		links[1]="/arias.htm";
		tests[1]="<p>The delivery achieved a world class standard in technical and staging, regardless of the complexity that comes with the integration of each element into the design; and in 2009 staging the live television event in the round. Each year Fourth Wall Events achieved the delivery for less budget but still the same quality and detail.</p>";
		links[2]="/soyouthinkyoucandance.htm";
		tests[2]="<p>Fourth Wall Events continue to be retained to deliver the production and have developed a strong working relationship with Fremantle Media.</p>";
		links[3]="/tamworth.htm";
		tests[3]="<p>The award event is now broadcast nationally on free to air and cable television and on live radio.  The new set and change of delivery of the awards has resulted in increased prestige and event following.</p>";
		links[4]="/zoofari.htm";
		tests[4]="<p>Thank you for your vision, patience and hard work. So many regular fundraising event goers have said that this was the best and most well run fundraising event they have ever been to.</p><p><strong>Events Officer<br/>Taronga Zoo</strong></p>";
	}
	if (page=="custom"){
		links[0]="/arias.htm";
		tests[0]="<p>The delivery achieved a world class standard in technical and staging, regardless of the complexity that comes with the integration of each element into the design; and in 2009 staging the live television event in the round. Each year Fourth Wall Events achieved the delivery for less budget but still the same quality and detail.</p>";
		links[1]="/bvlgari.htm";
		tests[1]="<p>Large social media coverage and trade articles instantly set the new range at the top of everyone's minds. Some of Australia's top ambassadors enjoyed a rare experience of partying around the world's best jewels.</p>";
		links[2]="/mckennabourbon.htm";
		tests[2]="<p>Just thought I'd take this opportunity to say well in the build up and subsequent launch of McKenna Bourbon.</p><p>Word on the street at Lion Nathan is that it is a world class effort and there is a great deal of internal excitement from the leaders down for McKenna - we should all be very proud of this achievement.</p><p><strong>Brand Manager<br/>Lion Nathan Australia</strong></p>";
		links[3]="/nickelodeon.htm";
		tests[3]="<p>While the awards managed to slime everything possible the only thing smashed was the ratings with audience numbers above expectations and breaking new ground in award events. The show is now an award winning experience and many of the techniques have been adapted worldwide.</p>";
		links[4]="/nida.htm";
		tests[4]="<p>You were a delight to work with and all of you managed to stay calm and good humoured throughout the entire process of planning and executing a complicated event, involving many players.</p><p><strong>Director / CEO<BR>The National Institute of Dramatic Art (NIDA)</strong></p>";
	}
	if (page=="web"){
		links[0]="/beyonce.htm";
		tests[0]="<p>As usual with any megastar there are last minute changes made by the record label, management and local promoter; these were handled with the usual flair and flexibility that Fourth Wall Events are renowned for.</p>";
		links[1]="/rugbyworldcup.htm";
		tests[1]="<p>From a realistic recreation of a football field, to featured highlights of the cup and guest shots, the screen filled the room with a sense of energy and impact.  This was perfectly delivered for the over two million viewers who enjoyed the show and the eight hundred guests in the room.</p>";
		links[2]="/sheraton.htm";
		tests[2]="<p>Thanks for successfully doing GOOD for Sheraton.</p><p>Appreciate your flexibility in accommodating to the event needs, and the many changes required.  Thanks also for the reverse driving of milestones and deadlines.  It was a job well done.  We certainly found the right team to get the job done.</p><p><strong>Brand Director, Asia-Pacific<br/>Sheraton Hotels &amp; Resorts</strong></p>";
		links[3]="/westpacpointspod.htm";
		tests[3]="<p>The Point Pod stand generated significant uptake of the Altitude credit card.  Westpac now also have a reusable asset that they can use to champion the brand.</p>";
		links[4]="/constructionachievement.htm";
		tests[4]="<p>These awards are now seen as the &lsquo;Oscars&rsquo; of the construction industry and included The Premier of Queensland as the guest speaker on the evening.</p>";
	}
	if (page=="online"){
		links[0]="/awardawards.htm";
		tests[0]="<p>The event has gone from one that was struggling to keep up with the pace of the industry to being the premier night in Australasia and now incorporates other, previously competitive award nights.  Sponsorship now involves the entire industry and the event has become a sell-out event.</p>";
		links[1]="/goodfoodguide.htm";
		tests[1]="<p>I especially wanted to acknowledge that as the new custodian of these awards, your expertise and professionalism was deeply appreciated. I am glad I had your team behind us, and the whole process of piecing it all together was a real pleasure to work with you all on.</p><p><strong>Trade Sponsorships, Events and Hospitality Manager, Trade Marketing and Strategic Insights<BR>Fairfax Media</strong></p>";
		links[2]="/mardigras.htm";
		tests[2]="<p>Nothing short of brilliance in my mind. I have worked with numerous professionals in my career, but I am inspired and motivated by your level of professionalism and commitment to delivering excellence.</p><p><strong>General Manager<br/>New Mardi Gras</strong></p>";
		links[3]="/royaleastershow.htm";
		tests[3]="<p>The show was a huge success. The characters Fourth Wall Events created became the backbone for the pre-show marketing campaign and were so successful that they were used again the following year to promote the Show.  The spectacular received a standing ovation &ndash; the only Royal Easter Show Arena Show to achieve this, and generated widespread national and international media coverage.</p>";
		links[4]="/amazingrace.htm";
		tests[4]="<p>I can't tell you how much I appreciated your hard work on the shows we did in Australia. It was rare that I arrived in a country to find things so well in hand. It was also nice dealing with people so even-tempered. Someone like you, who do their job without contributing to the overall anxiety, is very refreshing.</p><p><strong>Art Director<br/>Amazing Race</strong></p>";
	}
	if (page=="experience"){
		links[0]="/arias.htm";
		tests[0]="<p>The delivery achieved a world class standard in technical and staging, regardless of the complexity that comes with the integration of each element into the design; and in 2009 staging the live television event in the round. Each year Fourth Wall Events achieved the delivery for less budget but still the same quality and detail.</p>";
		links[1]="/goodfoodguide.htm";
		tests[1]="<p>I've lost count of the number of people who told us last night and today that it was the best launch in the history of the Guide. &quot;Gushing praise&quot; sort of sums it up.</p><p>Everything that was wrong about last year was right about this year.</p><p><strong>Co-editor<br/>The Age Good Food Guide</strong></p>";
		links[2]="/royaleastershow.htm";
		tests[2]="<p>The show was a huge success. The characters Fourth Wall Events created became the backbone for the pre-show marketing campaign and were so successful that they were used again the following year to promote the Show.  The spectacular received a standing ovation &ndash; the only Royal Easter Show Arena Show to achieve this, and generated widespread national and international media coverage.</p>";
		links[3]="/westpac.htm";
		tests[3]="<p>It was Westpac's aim to achieve 100 new home loan applications through the campaign. It generated 1000 new leads which equates to over $300 million in new revenue.  The promotion also attracted substantial media coverage in consumer and industry publications.</p>";
	}
	if (page=="whychoose"){
		links[0]="/beyonce.htm";
		tests[0]="<p>As usual with any megastar there are last minute changes made by the record label, management and local promoter; these were handled with the usual flair and flexibility that Fourth Wall Events are renowned for.</p>";
		links[1]="/exportawards.htm";
		tests[1]="<p>Overall, the feedback we received from guests was fantastic. We had very favourable comments on the theme of the room, the colours, the style and sophistication and audio visual presentation. As the finale and premiere event of the Australian Export Awards program, the Ceremony met and exceeded our expectations. Thank you.</p><p><strong>Manager, Major Events<BR>Austrade</strong></p>";
		links[2]="/goodfoodguide.htm";
		tests[2]="<p>On behalf of The Age I just wanted to pass on my thanks for the amazing job you did with our awards this year.  You delivered an outstanding event and re-established the awards night to where it should be.</p><p><strong>Trade Sponsorship Manager<br/>The Age</strong></p>";
		links[3]="/opera.htm";
		tests[3]="<p>The fundraising events covered everything from marquees in the Hunter Valley in the middle of vineyards to changing studios in Channel 7 and were delivered in black tie style and always focused on the primary objective of raising funds for the Opera.</p>";
	}
	if (page=="directors"){
		links[0]="/abbott.htm";
		tests[0]="<p>The conference committee all agreed that the delivery enabled the main message to be clearly communicated and left the team in no doubt about the objective of the week and the future of Abbott.</p>";
		links[1]="/amazingrace.htm";
		tests[1]="<p>I can't tell you how much I appreciated your hard work on the shows we did in Australia. It was rare that I arrived in a country to find things so well in hand. It was also nice dealing with people so even-tempered. Someone like you, who do their job without contributing to the overall anxiety, is very refreshing.</p><p><strong>Art Director<br/>Amazing Race</strong></p>";
		links[2]="/arias.htm";
		tests[2]="<p>The delivery achieved a world class standard in technical and staging, regardless of the complexity that comes with the integration of each element into the design; and in 2009 staging the live television event in the round. Each year Fourth Wall Events achieved the delivery for less budget but still the same quality and detail.</p>";
		links[3]="/mardigras.htm";
		tests[3]="<p>The Festival was perfectly delivered for the New Mardi Gras as it was profitable and sustainable for future years, while bringing together some of the biggest stars for an amazing party and celebration. The parade in 2009 had nine thousand five hundred participants, one hundred and thirty four floats and was the largest in its&rsquo; history.</p>";
		links[4]="/topgear.htm";
		tests[4]="<p>The team did a fabulous job last night, and the comments that have been circulating are full of superlatives! From my perspective you honestly made the event - you are clearly at the top of your game, and your professionalism and incredible talent in creating, coordinating and executing such events is truly exceptional.</p><p><strong>Top Gear Australia Launch<br/>SBS</strong></p>";
	}
	if (page=="jeremy"){
		links[0]="/jeremy.htm";
		tests[0]="<p>Theatrical background and experience in delivering content, concepts and strategic outcomes for a variety of projects and audiences</p>";
	}
	if (page=="grant"){
		links[0]="/grant.htm";
		tests[0]="<p>Highly experienced in television and live events of large scales, with years of operational knowledge and team leadership</p>";
	}
	if (page=="darren"){
		links[0]="/darren.htm";
		tests[0]="<p>Highly creative and international experience with strong knowledge of theatre, television and events</p>";
	}
	if (page=="environment"){
		links[0]="/masdar.htm";
		tests[0]="<p>Our clients stayed in the Park Hyatt and had great joy in sending images back to their team showing the amazing installation.  Guests talked about the anticipation of wanting to see what was inside as they had all had their attention grabbed each night by this glowing masterpiece.</p>";
		links[1]="/sheraton.htm";
		tests[1]="<p>Over 7000 people visited the site, over 7000 people went to the web-site and 35,000 key cards were given out potential clients.  The result also generated press in the Australian Financial Review and BRW.  Sheraton declared that the Sydney launch was the highlight of the entire international day.</p>";
		links[2]="/sheraton.htm";
		tests[2]="<p>Thanks for successfully doing GOOD for Sheraton.</p><p>Appreciate your flexibility in accommodating to the event needs, and the many changes required.  Thanks also for the reverse driving of milestones and deadlines.  It was a job well done.  We certainly found the right team to get the job done.</p><p><strong>Brand Director, Asia-Pacific<br/>Sheraton Hotels &amp; Resorts</strong></p>";
		links[3]="/royaleastershow.htm";
		tests[3]="<p>The show was a huge success. The characters Fourth Wall Events created became the backbone for the pre-show marketing campaign and were so successful that they were used again the following year to promote the Show.  The spectacular received a standing ovation &ndash; the only Royal Easter Show Arena Show to achieve this, and generated widespread national and international media coverage.</p>";
		links[4]="/zoofari.htm";
		tests[4]="<p>Thank you for your vision, patience and hard work. So many regular fundraising event goers have said that this was the best and most well run fundraising event they have ever been to.</p><p><strong>Events Officer<br/>Taronga Zoo</strong></p>";
	}
	if (page=="csr"){
		links[0]="/amazingrace.htm";
		tests[0]="<p>I can't tell you how much I appreciated your hard work on the shows we did in Australia. It was rare that I arrived in a country to find things so well in hand. It was also nice dealing with people so even-tempered. Someone like you, who do their job without contributing to the overall anxiety, is very refreshing.</p><p><strong>Art Director<br/>Amazing Race</strong></p>";
		links[1]="/dreamball.htm";
		tests[1]="<p>The huge fundraising effort brings together a large live auction, huge silent auction and donation system that directly changes the lives of cancer sufferers.  Year on year this has increased and Fourth Wall Events have enjoyed the relationship and giving back to the community.</p>";
		links[2]="/lifehouse.htm";
		tests[2]="<p>Last night was truly amazing, to quote one of our board members &ldquo;It had the right mix of sorrow, reflection and inspiration and everyone I spoke to commented how moving the whole evening was.&rdquo; We all know that a wonderful evening like this does not just happen.</p><p><strong>Event Committee<br/>Lifehouse @ RPA</strong></p>";
		links[3]="/masdar.htm";
		tests[3]="<p>Our clients stayed in the Park Hyatt and had great joy in sending images back to their team showing the amazing installation.  Guests talked about the anticipation of wanting to see what was inside as they had all had their attention grabbed each night by this glowing masterpiece.</p>";
	}
	if (page=="ohands"){
		links[0]="/arias.htm";
		tests[0]="<p>The delivery achieved a world class standard in technical and staging, regardless of the complexity that comes with the integration of each element into the design; and in 2009 staging the live television event in the round. Each year Fourth Wall Events achieved the delivery for less budget but still the same quality and detail.</p>";
		links[1]="/bvlgari.htm";
		tests[1]="<p>Large social media coverage and trade articles instantly set the new range at the top of everyone's minds. Some of Australia's top ambassadors enjoyed a rare experience of partying around the world's best jewels.</p>";
		links[2]="/carols.htm";
		tests[2]="<p>This annual event continues to bring families together with Australia&rsquo;s and the world&rsquo;s brightest Christmas stars, and is one of the highlights of the festival season.</p>";
		links[3]="/nickelodeon.htm";
		tests[3]="<p>It was the highest rating Nickelodeon Kids Choice Awards ever (highest rated program on all of Foxtel at the time!!!) and generated five times more publicity value than last year !!!!!!! It was a huge show! Thank you!</p><p><strong>Nickelodeon Network Producer</strong></p>";
	}
}

