// JavaScript Document
// The following function must be copied and edited for the other site sections to work. //
function loadMarketingContent(topic)// edit this name to represent the different site sections
{
	var div = document.getElementById('main-left-container');//the div where the html code is going to be placed
	var img = document.getElementById('image-strip'); //image strips at the bottom of the page

	if (div)
	{
		switch (topic)
		{
			case 0:
				div.innerHTML = "<h1>Corporate Re-identity </h1><p>Champions (UK) analyses every aspect of our clients' needs in order to <strong style='color: #F4A735;'>devise a new corporate or brand identity.</strong> Corporate logos are becoming ever increasingly important, as they are a customer's <strong style='color: #F4A735;'>first impression </strong>of your organization and we all know the adage about first impressions.  </p><p>Our service covers every aspect to ensure that your new identity <strong style='color: #F4A735;'>retains the positive qualities</strong> clients associate with the brand or service, whilst ensuring that the branding is brought up to date. </p><p>Call us now on<strong style='color: #F4A735;'> 08453 313031</strong> to see what Champions can do for you.</p>";//paste the html you wise to display in here on each "case".
				
				if(img)
				{
					img.src="../images/marketing/marketing-strip-6.jpg";//this is the image bar "src"
					}
				break;
				
			case 1:
				div.innerHTML = "<h1>Marketing Consultancy</h1><p>The Champions team meets with our clients to <strong style='color: #F4A735;'>fully understand all of their marketing needs and objectives. </strong> Once all our clients' goals have been understood, Champions will then develop a bespoke marketing campaign to full meet these objectives and <strong style='color: #F4A735;'>exceed their expectations.</strong> </p><p>However, the Champions service does not stop here.  We work with every client <strong style='color: #F4A735;'>from conception to completion.</strong>  We work with our clients on a step by step basis to <strong style='color: #F4A735;'>analyse the campaign at every stage </strong>to ensure the end results are fully maximized whilst brand or company integrity is retained.</p>";
				
				if(img)
				{
					img.src="../images/marketing/marketing-strip-2.jpg";
					}
				break;
				
			case 2:
				div.innerHTML = "<h1>Promotional Literature </h1><p>Through our creative design and copywriting departments, Champions (UK) offers clients a <strong style='color: #F4A735;'>complete range of promotional literature concepts</strong> such as: </p><ul style='font-weight: bold; font-size: 14px;' class='flame-bullets'><li> Corporate Brochures </li><li> Company Newsletters </li><li> Promotional Flyers </li>  <li> Magazine &amp; Newspaper Advertisements </li><li> Information Packs</li><li> Point of Sale Materials </li><li> Client application forms </li></ul>";
				
				if(img)
				{
					img.src="../images/marketing/marketing-strip-4.jpg";
					}
				break;
				
			case 3:
				div.innerHTML = "<h1>Brand Management</h1><p>From <strong style='color: #F4A735;'>brand conception, design and marketing,</strong> Champions (UK) offers the complete &quot;one stop shop&quot;.  No matter what the product or service, we understand that <strong style='color: #F4A735;'>the &quot;brand&quot; is vital </strong>to the success of your business. We can support your brand in the following ways: </p><ul class='flame-bullets' style='font-size: 14px; font-weight: bold;'><li> Brand Conception </li><li> Positioning </li><li> Promotion </li><li> Recognition </li><li>Design </li><li> Re-Positioning </li><li> Advertising </li><li> Development </li></ul>";
				
				if(img)
				{
					img.src="../images/marketing/marketing-strip-2.jpg";
					}
				break;
			
			case 4:
				div.innerHTML = "<h1>Graphic Design </h1><p>Champions (UK) offers a <strong style='color: #F4A735;'>complete graphic design service.</strong> Whether it is internal marketing material to product packaging redesign, the Champions team can supply it all.</p><p>A small example of some of the designs our team have worked on previously are shown to the right.</p><p>Whatever your requirements, the Champions team is sure to create <strong style='color: #F4A735;'>&quot;The Winning Formula&quot;</strong> for your company or brand at a cost that is second to none.</p>";
				
				if(img)
				{
					img.src="../images/marketing/marketing-strip-4.jpg";
					}
				break;
				
			case 5:
				div.innerHTML = '<h1>Website  Design </h1><p>Champions UK PLC is able to offer website design to our  clients. We specialise in creating small to medium sized websites.&nbsp; For examples of sites we have designed  please click on the links below:</p><p><a href="http://www.dennistaylor.co.uk/"><img src="images/portfolio/dennis-taylor.jpg" alt="Dennis Taylor" width="200" height="194" /></a><a href="http://www.thegreatwt.co.uk/"><img src="images/portfolio/willie-thorne.jpg" alt="Willie Thorne" width="200" height="194" /></a></p><p><a href="http://www.graemestorm.co.uk/"><img src="images/portfolio/graeme-storm.jpg" alt="Graeme Storm" width="200" height="194" /></a><a href="http://www.championspr.com/"><img src="images/portfolio/champions-pr.jpg" alt="Champions PR" width="200" height="194" /></a></p><p><a href="http://www.petershilton.com"><img src="images/portfolio/peter-shilton.jpg" alt="Peter Shilton" width="200" height="194" /></a></p>';
				
				if(img)
				{
					img.src="../images/marketing/marketing-strip-6.jpg";
					}
				break; //end the loop
				
		
		}
	}
}
//start new function here.