function showBlurb(target,hide1,hide2,hide3, hide4)
{
	var ImagePath = "";
	var andyPic = "";
	var emmaPic = "";
	var vincePic = "";
	var humphreyPic = "";
	var clairePic = "";
	switch(target)
	{
		case "andy":
		ImagePath = 'url(Images/Andy.jpg)';
		andyPic = 'Images/andybutton_over.png';
		emmaPic = 'Images/emmabutton.png';
		vincePic = 'Images/vincebutton.png';
		humphreyPic = 'Images/humphreybutton.png';
		clairePic = "Images/clairebutton.png";
		break;
		case "emma":
		ImagePath = 'url(Images/Emma.jpg)';
		andyPic = 'Images/andybutton.png';
		emmaPic = 'Images/emmabutton_over.png';
		vincePic = 'Images/vincebutton.png';
		humphreyPic = 'Images/humphreybutton.png';
		clairePic = "Images/clairebutton.png";
		break;
		case "vince":
		ImagePath = 'url(Images/Vince.jpg)';
		andyPic = 'Images/andybutton.png';
		emmaPic = 'Images/emmabutton.png';
		vincePic = 'Images/vincebutton_over.png';
		humphreyPic = 'Images/humphreybutton.png';
		clairePic = "Images/clairebutton.png";
		break;
		case "humphrey":
		ImagePath = 'url(Images/Humphrey.jpg)';
		andyPic = 'Images/andybutton.png';
		emmaPic = 'Images/emmabutton.png';
		vincePic = 'Images/vincebutton.png';
		clairePic = "Images/clairebutton.png";
		humphreyPic = 'Images/humphreybutton_over.png';
		break;
		case "claire":
		ImagePath = 'url(Images/ClaireBiog.jpg)';
		clairePic = "Images/clairebutton_over.png";
		andyPic = 'Images/andybutton.png';
		emmaPic = 'Images/emmabutton.png';
		vincePic = 'Images/vincebutton.png';
		humphreyPic = 'Images/humphreybutton.png';
		break;
	}
		
	$('containerpic').setStyle({background : ImagePath});
	$('clairebutton').writeAttribute({src: clairePic});
	$('andybutton').writeAttribute({ src: andyPic }); 
	$('emmabutton').writeAttribute({ src: emmaPic }); 
	$('vincebutton').writeAttribute({ src: vincePic }); 
	$('humphreybutton').writeAttribute({ src: humphreyPic }); 
	new Effect.Appear(target);
	new Effect.Fade(hide1,{duration:0.2});
	new Effect.Fade(hide2,{duration:0.2});
	new Effect.Fade(hide3,{duration:0.2});
	new Effect.Fade(hide4,{duration:0.2});
}

function hoverThumb(target,state)
{
	if(state)
	{
		$(target).writeAttribute({ border: '5px solid #993399'});
	}
	else
	{
		$(target).writeAttribute({ border: 'none'});
	}
}

function showDesignCategory(theSource,theTarget,theClient,theCategory) {
	var target = $(theTarget);
	var allULs = $$('.pagelist').without(target);
	var allLinks = $$('.proglink');
	allLinks.each(function(elt){elt.removeClassName('green');elt.removeClassName('white');elt.addClassName('white');});
	theSource.removeClassName('white');
	theSource.addClassName('green');
	allULs.each(function(elt){new Effect.Fade(elt,{duration:0.2});});
	new Effect.Appear(target,{duration:0.5});
	//Finally, highlight the default item.
	var theList = target.descendants();
	var selectedItem = theList[0].descendants()[0];
	selectedItem.removeClassName('white');
	selectedItem.addClassName('green');
	handleArtworkForClient(selectedItem,theClient,theCategory);
}

function handleArtworkForClient(target,client,category){
	var theArray = getArtworkForClient(client,category);
	var theArtwork = theArray[0];
	var theLi = $('sublink' + theArray[1]);
	var theInsert = '<ul class="designpager" id="pager">\n';
	var liCount = 0;
	var addStyle = '';
	theArtwork.each(function(image,index){
						   liCount += 1;
						   if(liCount==1)
						   {
							  addStyle = ' green';
						   }
						   else
						   {
							   addStyle = '';
						   }
						   theInsert += '<li><a class="pagelink' + addStyle + '" href="javascript:void(0)" onclick="switchImage(\'' + image + '\',this)">' + (index+1) + '</li>';
						   });
	theInsert += '</ul>';
	$('pager').replace(theInsert);
	var theList = $$('.sublink');
	theList.each(function(elt){elt.removeClassName("green");elt.addClassName("white");});
	if(target != null)
	{
		theLi.removeClassName("white");
		theLi.addClassName("green");
	}
}

function switchImage(theImage,thePage){
	var theLinks = $$('.pagelink');
	theLinks.each(function(elt){elt.removeClassName('green');});
	$('mainpic').writeAttribute({ src: theImage });
	if(thePage != null){
	thePage.addClassName('green');
	}
	else
	{
		theLinks[0].addClassName('green');
	}
}

function getArtworkForClient(client,category) {
	var theArray = [];
	switch(category){
		case 'branding':
			switch(client){
				case 'zimmer':
				theArray = [['Images/brand_zimmacad1.jpg','Images/brand_zimmacad2.jpg','Images/brand_zimmacad3.jpg'],'7'];
				break;
				case 'cube':
				theArray = [['Images/brand_cube1.jpg','Images/brand_cube2.jpg','Images/brand_cube3.jpg'],'5'];
				break;
				case 'artscott':
				theArray = [['Images/brand_artscott1.jpg','Images/brand_artscott2.jpg','Images/brand_artscott3.jpg'],'2'];
				break;
				case 'hertford':
				theArray = [['Images/brand_hertford1.jpg','Images/brand_hertford2.jpg','Images/brand_hertford3.jpg','Images/brand_hertford4.jpg','Images/brand_hertford5.jpg'],'1'];
				break;
				case 'pure':
				theArray = [['Images/brand_puredesign1.jpg','Images/brand_puredesign2.jpg','Images/brand_puredesign3.jpg','Images/brand_puredesign4.jpg'],'3'];
				break;
				case 'concept':
				theArray = [['Images/brand_concept1.jpg','Images/brand_concept2.jpg','Images/brand_concept3.jpg'],'4'];
				break;
				case 'randon':
				theArray = [['Images/brand_randon1.jpg','Images/brand_randon2.jpg','Images/brand_randon3.jpg'],'6'];
				break;
				case 'nationwide':
				theArray = [['Images/brand_nation1.jpg','Images/brand_nation2.jpg','Images/brand_nation3.jpg','Images/brand_nation4.jpg','Images/brand_nation5.jpg'],'8'];
				break;
				case 'restore':
				theArray = [['Images/brand_restore1.jpg','Images/brand_restore2.jpg','Images/brand_restore3.jpg','Images/brand_restore4.jpg'],'9'];
				break;
				case 'pool':
				theArray = [['Images/brand_pool.jpg', 'Images/brand_pool1.jpg'], '40'];
				break;
				case 'craftworks':
				theArray = [['Images/brand_craftworks1.jpg', 'Images/brand_craftworks2.jpg', 'Images/brand_craftworks3.jpg'], '45'];
				break;
			}
		break;
		case 'design':
			switch(client){
				case 'artscott':
				theArray = [['Images/print_artscott1.jpg','Images/print_artscott2.jpg','Images/print_artscott3.jpg','Images/print_artscott4.jpg'],'12'];
				break;
				case 'concept':
				theArray = [['Images/print_concept1.jpg','Images/print_concept2.jpg','Images/print_concept3.jpg','Images/print_concept4.jpg'],'14'];
				break;
				case 'cube':
				theArray = [['Images/print_cube1.jpg','Images/print_cube2.jpg','Images/print_cube3.jpg'],'15'];
				break;
				case 'jointline':
				theArray = [['Images/print_jointline1.jpg','Images/print_jointline2.jpg','Images/print_jointline3.jpg'],'16'];
				break;
				case 'pure':
				theArray = [['Images/print_puredesign1.jpg','Images/print_puredesign2.jpg','Images/print_puredesign3.jpg','Images/print_puredesign4.jpg','Images/print_puredesign5.jpg'],'13'];
				break;
				case 'zimmspine':
				theArray = [['Images/print_zimmspine1.jpg','Images/print_zimmspine2.jpg','Images/print_zimmspine3.jpg','Images/print_zimmspine4.jpg','Images/print_zimmspine5.jpg'],'10'];
				break;
				case 'zimmtrab':
				theArray = [['Images/print_zimmtraum1.jpg','Images/print_zimmtraum2.jpg','Images/print_zimmtraum3.jpg','Images/print_zimmtraum4.jpg'],'11'];
				break;
				case 'cda':
				theArray = [['Images/print_cda1.jpg','Images/print_cda2.jpg','Images/print_cda3.jpg','Images/print_cda4.jpg'],'18'];
				break;
				case 'zimmfolio':
				theArray = [['Images/print_zimmfolio1.jpg','Images/print_zimmfolio2.jpg','Images/print_zimmfolio3.jpg','Images/print_zimmfolio4.jpg','Images/print_zimmfolio5.jpg','Images/print_zimmfolio6.jpg'],'39'];
				break;
				case 'radio':
				theArray = [['Images/print_radio1.jpg', 'Images/print_radio2.jpg', 'Images/print_radio3.jpg', 'Images/print_radio4.jpg'], '44'];
				break;
			}
		break;
		case 'direct':
			switch(client){
				case 'hertford':
				theArray = [['Images/dm_hertford1.jpg','Images/dm_hertford2.jpg'],'20'];
				break;
				case 'nationwide':
				theArray = [['Images/dm_nation1.jpg','Images/dm_nation2.jpg'],'21'];
				break;
				case 'zimmblood':
				theArray = [['Images/dm_zimmblood1.jpg','Images/dm_zimmblood2.jpg','Images/dm_zimmblood3.jpg'],'24'];
				break;
				case 'zimmcuff':
				theArray = [['Images/dm_zimmcuff1.jpg','Images/dm_zimmcuff2.jpg','Images/dm_zimmcuff3.jpg'],'23'];
				break;
				case 'zimmspine':
				theArray = [['Images/dm_zimmspine1.jpg','Images/dm_zimmspine2.jpg','Images/dm_zimmspine3.jpg'],'49'];
				break;
				case 'zimmtraum':
				theArray = [['Images/dm_zimmtraum1.jpg','Images/dm_zimmtraum2.jpg','Images/dm_zimmtraum3.jpg'],'22'];
				break;
				case 'andrews':
				theArray = [['Images/dm_andrews1.jpg','Images/dm_andrews2.jpg','Images/dm_andrews3.jpg','Images/dm_andrews4.jpg'],'52'];
				break;
				case 'windmill':
				theArray = [['Images/dm_windmill1.jpg','Images/dm_windmill2.jpg','Images/dm_windmill3.jpg','Images/dm_windmill4.jpg'],'47'];
				break;
				case 'clifton':
				theArray = [['Images/dm_clifton1.jpg','Images/dm_clifton2.jpg','Images/dm_clifton3.jpg','Images/dm_clifton4.jpg'],'48'];
				break;
			}
		break;
		case 'exhibition':
			switch(client){
				case 'artscott':
				theArray = [['Images/exhib_artscott1.jpg'],'25'];
				break;
				case 'westing':
				theArray = [['Images/exhib_westing1.jpg','Images/exhib_westing2.jpg'],'29'];
				break;
				case 'zimmdynesis':
				theArray = [['Images/exhib_zimmdynesys1.jpg','Images/exhib_zimmdynesys2.jpg'],'26'];
				break;
				case 'zimmpanels':
				theArray = [['Images/exhib_zimmpanel1.jpg','Images/exhib_zimmpanel2.jpg','Images/exhib_zimmpanel3.jpg'],'27'];
				break;
				case 'zimmstand':
				theArray = [['Images/exhib_zimmstand1.jpg','Images/exhib_zimmstand2.jpg','Images/exhib_zimmstand3.jpg','Images/exhib_zimmstand4.jpg'],'28'];
				break;
				case 'humphrey':
				theArray = [['Images/display_humphrey1.jpg', 'Images/display_humphrey2.jpg', 'Images/display_humphrey3.jpg'], '43'];
				break;
			}
		break;
		case 'web':
			switch(client){
				case 'appfrance':
				theArray = [['Images/digital_appfrance1.jpg','Images/digital_appfrance2.jpg','Images/digital_appfrance3.jpg','Images/digital_appfrance4.jpg'],'36'];
				break;
				case 'concept':
				theArray = [['Images/digital_concept1.jpg','Images/digital_concept2.jpg','Images/digital_concept3.jpg','Images/digital_concept4.jpg'],'33'];
				break;
				case 'hertford':
				theArray = [['Images/digital_hertford1.jpg','Images/digital_hertford2.jpg','Images/digital_hertford3.jpg','Images/digital_hertford4.jpg'],'32'];
				break;
				case 'jointline':
				theArray = [['Images/digital_zimmer1.jpg','Images/digital_zimmer2.jpg','Images/digital_zimmer3.jpg','Images/digital_zimmer4.jpg'],'31'];
				break;
				case 'marmite':
				theArray = [['Images/digital_marmite1.jpg','Images/digital_marmite2.jpg','Images/digital_marmite3.jpg','Images/digital_marmite4.jpg'],'30'];
				break;
				case 'randon':
				theArray = [['Images/digital_randon1.jpg','Images/digital_randon2.jpg','Images/digital_randon3.jpg','Images/digital_randon4.jpg'],'34'];
				break;
				case 'zimmtime':
				theArray = [['Images/digital_zimmtime1.jpg','Images/digital_zimmtime2.jpg','Images/digital_zimmtime3.jpg','Images/digital_zimmtime4.jpg'],'35'];
				break;
				case 'epc':
				theArray = [['Images/digital_epc1.jpg','Images/digital_epc2.jpg','Images/digital_epc3.jpg'],'37'];
				break;
				case 'zpres':
				theArray = [['Images/digital_zimmpres1.jpg','Images/digital_zimmpres2.jpg','Images/digital_zimmpres3.jpg','Images/digital_zimmpres4.jpg','Images/digital_zimmpres5.jpg'],'38'];
				break;
				case 'formula':
				theArray = [['Images/digital_formula1.jpg', 'Images/digital_formula2.jpg'], '41'];
				break;
				case 'action':
				theArray = [['Images/digital_action1.jpg', 'Images/digital_action2.jpg', 'Images/digital_action3.jpg'], '42'];
				break;
				case 'craftworks':
				theArray = [['Images/digital_craftworks1.jpg', 'Images/digital_craftworks2.jpg', 'Images/digital_craftworks3.jpg'], '53'];
				break;

			}
		break;
	}
	switchImage(theArray[0][0]);
	return theArray;
}

function populateNews(n,popup)
{
	var theStory = getNews(n);
	if (typeof(theStory.alternateheadline) !== "undefined")
	{
		var theInsert = '<div id="newstext"><h1 class="news">' + theStory.alternateheadline + '</h1>';
	}
	else
	{
		var theInsert = '<div id="newstext"><h1 class="news">' + theStory.headline + '</h1>';
	}
	theStory.paragraphs.each(function(p){ theInsert += '<p>' + p + '</p>';});
	theInsert += '</div>';
	$('newstext').replace(theInsert);
	if(popup)
	{
		$('newspic').writeAttribute({ src: '#' }); 
		//$('newspic').writeAttribute({ src: 'http://www.design146.com/Images/' + theStory.image }); 
		$('newspic').writeAttribute({ src: './Images/' + theStory.image }); 
		new Effect.Grow($('newspic'),{direction:'center',duration:0.3});
		new Effect.Appear($('closepic'),{queue: 'end'},{duration:0.1});
	}
}

function closePic(){
	new Effect.Fade($('closepic'),{duration:0.1});
	new Effect.DropOut($('newspic'),{queue: 'end',duration:1});
}

var newsStories = [{id: 13,summary: 'Super friendly and keen to help out with new clients. Especially the shy ones who aren\'t sure exactly if they need us. If we can\'t do anything for you right now she\'ll just have a nice chat anyway.',headline: 'Meet Claire',image: 'large_claire.jpg',thumb: 'thumb_claire.jpg',paragraphs: ['Never mind the credit crunch. We\'re refusing to feel sad and gloomy. design146 is very excited about having Claire in the studio to look after all our new and prospective clients. Some people are a bit shy but Claire is so smiley and friendly we think they\'ll realise working with us will help their business for 2009.','She\'s got loads of great experience and, more importantly, bags of enthusiasm and ideas for making design146 work even better for its customers. Keep watching the web site as she\'ll be keeping it fresh with news and updates of recent work.','Emma thinks having Claire around will generally raise the tone and steer the conversation away from sport and bikes. Hopefully towards important topics such as politics, the environment and shoes. Andy and Vince are a bit worried scatter cushions may appear and that the biscuit to person ration will sharply decrease.']},
				   {id: 14,summary: 'Lots of medical product info condensed into one simple package. Unwieldy technical brochures were reduced to a series of neat datasheets clipped into one stylish folder. It can now be held in one hand for those impromptu sales chats with Dr. Whoever, wherever.',headline: 'Tardis design',image: 'large_zportfolio.jpg',thumb: 'thumb_zportfolio.jpg',paragraphs: ['How do you showcase an ever expanding product portfolio, but in the simplest possible way? Zimmer already had brochures for every product but these are very technical. Altogether a bit of a handful for the sales reps to manage when chatting to their clients. They needed one simple package, easy to handle but in a format that would look as good as the products it\'s showcasing.','Firstly we designed a simple four page datasheet with the key information in easy to read bullet points. Product info text was laid out in a trickle down approach with the primary factors in larger type and then more detailed info text becoming smaller. Stunning photography of the products shows off their advantages too.','Any new products can just be slipped in between the pre printed dividers. A silky matt laminated finish adds a nice tactile element too as well as looking the business. A chunky leather style ringbinder with an emboss of the Zimmer logo personalises it and adds to the bespoke feel. The sales team are made up with the new approach and a happy sales force results in happy clients. Great!','<a href="design_2.html?category=design&client=zimmfolio"><strong>Click here to see an example<strong/><a/>']},
				   {id: 15,summary: 'We\'ve created a flash presentation that\'s more exciting to look at than usual. Each time you can select the sections exactly to your target audience with some added wow factor to keep them awake.',headline: 'Flash news',image: 'large_zpresentation.jpg',thumb: 'thumb_zpresentation.jpg',paragraphs: ['Our client needed a really flexible presentation tool that would stand out way above all the usual boring ones. We realised a flash presentation could give us the wow factor that was missing and could be flexible enough too.','We designed the core elements to include exciting animated areas to make the presentation flow and come alive. A simple interface for the laptop means the user can select and build a different presentation for each new meeting. Extra modules can be built, inserted or deleted where needed. A narrated overview module can run as a stand alone piece or the user can pause and re-start any section to allow for questions and explanations.','We are working on a brochure to partner this and act as a leave behind. Zimmer are always developing their products and ideas so it\'s easy to keep it fresh and interesting - which is fun for us too. So this is an ongoing project. Bit like the Forth bridge but without the tedious painting.','<a href="design_2.html?category=web&client=zpres"><strong>Click here to see an example<strong/><a/>']},
				   {id: 9,summary: 'Bright new look and clever functions to maximize the efficiency of outdated website and literature.',headline: 'Take it easy. On-line service for busy people.',image: 'large_jointline.jpg',thumb: 'thumb_jointline.jpg',paragraphs: ['In 2006, long-time client Zimmer asked us to look at the Zimmer Jointline branding as it was a bit tired and now not so user friendly. The service had undergone a major overhaul and needed a new image to match.','Taking the existing presentation as a guide we designed the core elements to include exciting animated areas to make the presentation flow and come alive. We designed a simple interface for the laptop that meant the user could select and build up each different presentation uniquely for each new meeting and client. Extra product or info modules can be built and inserted or deleted where needed. A narrated overview module gives the option of letting it run as a stand alone piece or the user can pause and re-start any section to allow for questions and explanations.','Clarity and minimal on-line steps to use the service were crucial for efficiency. If it\'s too much like hard work, clients won\'t bother. We like to make it easy for people, life\'s stressful enough. In fact, stop reading this and make yourself a cup of tea and take five minutes.','<a href="design_2.html?category=web&client=jointline"><strong>Click here to see an example<strong/><a/>']},
				   {id: 8,summary: 'Ongoing selection of brochures needed to reflect individual artists and their work for a local gallery. Each unique piece has to complement the work and represent the gallery\'s brand without being overwhelming.',headline: 'Gallery exhibition catalogues - mini works of art?',image: 'large_cube.jpg',thumb: 'thumb_cube.jpg',paragraphs: ['This was tricky, meeting the demands of an artistic temperament. (And that was just Andy, they artists were really happy). We gave them each their own style of catalogue for each exhibition, experimenting with interesting textures and finishes, all to a very, very strict budget. Also we had to maintain a discreet gallery brand presence on each one.','Getting the colour and tonal qualities spot on is essential when you are promoting the works of an artist and we spent a long time getting it all spot on before and while on press. The printers aren\'t speaking to us any more but the catalogues look gorgeous. Worth every penny, we reckon.','<a href="design_2.html?category=design&client=cube"><strong>Click here to see an example<strong/><a/>']},
				   {id: 1,summary: 'New \'mystery\' partner for design146. Launch champagne party attended by local dignitaries. Paparazzi out in force to capture each moment. Andy Carroll in a skirt...?',headline: 'Carroll & Carroll',image: 'large_wedding.jpg',thumb: 'thumb_wedding.jpg',paragraphs: ['Well, not really a new partner, we just thought we\'d make it official. After nearly 10 years together we decided that we save a bit of money on the business stationery if we had the same surname. So on 3rd May we held a big party for our nearest and dearest in a field in Cornwall and got hitched at the same time.','The Church was actually on the local beach, which set the laid back tone for the day. Luckily the sun shone, despite the appalling forecast, while we got stuck into the best food and drink that Cornwall can offer. If you\'ve never washed down a pasty with some Camel Valley champagne you don\'t know what you\'re missing. We danced nearly til sun up and didn\'t even bother to leave the party for our honeymoon, carrying on the next day too and staying all week - we couldn\'t think of anywhere better to be.','As for saving money, well let\'s just say we forgot that there\'s quite a bit of cheque signing that goes with weddings and I think we\'re now out of pocket. Oh, and Andy really did wear a kilt. It\'s a Celtic thing, apparently.']},
				   {id: 3,summary:'Problem solved. Pure Design needed a brand refresh and brochure that would change as fast as their products did. We found a solution in a handy folder pack that could expand to match their customer base.',headline: 'Pure design flexibility',image: 'large_puredesign.jpg',thumb: 'thumb_puredesign.jpg',paragraphs: ['Pure Design approached us in a pickle. They wanted a new brochure that would showcase their products but they couldn\'t stop themselves getting exciting new products in all the time, making their printed brochure outdated practically off the press.','We got thinking and firstly pushed their branding up a few levels to match their fashionable, interior-accessory buying customers. Keeping the established logo, we added a fresh, modern palette to mix and match in the literature and web site.','Due to the fickle nature of the fashion led interior industry, always wanting something new, we went flexible too. A folder pack holds easy-to-swap loose sheets to showcase new products. Stylish photography and simple layouts shows clear detailing of each item to clinch a sale.','<a href="design_2.html?category=design&client=pure"><strong>Click here to see an example<strong/><a/>']},
				   {id: 4,summary: '2008 saw Andy Carroll Design move forward and a couple of streets away to a new location. We cunningly re banded ourselves as design146 to help us remember the new address too!',headline: 'New home for us',image: 'large_office.jpg',thumb: 'thumb_studio.jpg',paragraphs: ['In 2008 Andy Carroll Design moved and started working from a new studio and has changed the name to become a limited company. design146 has now settled in nicely in an open plan office on Bristol\'s vibrant Gloucester road, making us even easier for clients to find. Parking over the road is easier too!','The airy new studio has a reception area, a designated meeting space with a projector for presentations and huge bespoke desks to spread all the work out on. Lots more storage and a kitchen on the same floor makes Emma\'s job a bit easier too when making tasty sandwiches.','We are sharing the space (as it\'s a bit too big for just us) with some other like-minded designers and creatives to make an inspiring but relaxed environment to work in. Fridays usually end up with us all having a late studio \'meeting\' in the bar down the road.','Come and see us to find out what\'s going on and see if we can do anything for you.']},
				   {id: 5,summary: 'Elegant branding for bespoke carpet designer. When you create beautiful floor coverings you need a sophisticated look to match that whispers quality (not screams - that\'s vulgar). Subtlety is key.',headline: 'Luxury style for handmade carpet design company',image: 'large_concept.jpg',thumb: 'thumb_concept.jpg',paragraphs: ['A specialist, handtufted rug design company wanted to update their image to equal their stylish designs and client base.  An exacting eye for detail and near obsession with texture resulted in a classy, new identity and stationery to match.','We then produced designs for a sexy brochure with more touchy-feely textures to mimic the carpets. This and the web site provided a virtual showcase for the latest in luxe living for the discerning eye. We kept very quiet about having a concrete floor in our studio.','<a href="design_2.html?category=web&client=concept"><strong>Click here to see an example<strong/><a/>']},
				   {id: 6,summary: 'How do you persuade clever surgeons to use your product? Wow them with your product technology in an ad, but make sure it\'s still snappy and eye catching too so it jumps off the page.',headline: 'Doctor, doctor! Medical Advertising Campaign 2007',image: 'large_zimmspine1.jpg',thumb: 'thumb_zimmspine1.jpg',paragraphs: ['After a few years working for Zimmer\'s UK office, the Spine product department in Switzerland asked us to give them some ideas for ads for 2007.','We had to combine their very strict brand style with some, frankly, boggling technological data to show surgeons what they were missing by not using Zimmer. Not a lot of them knew Zimmer did spine things and it was our job to change that in a series of 15 adverts to introduce the whole range.','We kept it short, sweet and simple, maximizing the brand and the product together and minimized the jargon. It\'s not just surgeons who are clever.','<a href="design_2.html?category=design&client=zimmspine"><strong>Click here to see an example<strong/><a/>']},
				   {id: 7,summary: 'DIY surgery? New surgical product calls for super accurate explanatory literature to give surgeons a step-by-step user guide. Literally, someone\'s life could depend on it. No pressure then.',headline: 'Step by step surgery. Hi-tech literature.',image: 'large_zimmspine2.jpg',thumb: 'thumb_zimmspine2.jpg',paragraphs: ['The spine team liked what we did for the ad campaign so much they asked us to help out with their exciting new product launch literature. Lots of very, very important technical information to organize as concisely as possible.','As it was a spanking new product we had to produce the imagery too. It was a real team effort with an engineer and the marketing team flying over for the 2 day photo shoot of a real operation. Luckily for the squeamish, it was only on a plastic model but it was still exciting and a real technical challenge to get the shots needed.','Hours of digital retouching meant we had a perfect result, both practically and visually. Unfortunately, Emma thinks she could now be a surgeon too. Maybe we did too good a job.','<a href="design_2.html?category=direct&client=zimmspine"><strong>Click here to see an example<strong/><a/>']},
				   {id: 2,summary: 'Perfect pitch. Helping get a vision across to a tricky customer. Multi purpose presentation layouts and a sophisticated but subtle brand win through and steal the show. Sounds great.',headline: 'Life imitating art?',image: 'large_artscott.jpg',thumb: 'thumb_artscott.jpg',paragraphs: ['Having spotted our catalogue design for a local artist, Alison Scott decided she thought design146 would be perfect to strengthen her brand and work with her on a pitch to Bristol City Council. Her company ARTscott, provides a freelance arts consultancy to organizations, suggesting public artworks for their spaces.','Before we could get started, we needed to refresh her logo. A confident new look represents Alison as an individual but doesn\'t distract from showcasing her choice of artworks. It also has to work with the mixed identities of the many other partners involved when pitching to her clients. A nice palette of colours means we can chop and change bits to keep it all looking fresh.','Lots of different presentation formats and materials resulted in a logo, stationery, Art Strategy document, Art Plan, posters and other supporting items to show how amazing pieces of art can work so well in different public spaces. Alison is so pleased with how it\'s all come together it\'s reminded us that simple ideas often work best. Thanks Alison.','<a href="http://www.design146.com/design_2.html?category=branding&client=artscott"><strong>Click here to see an example<strong/><a/>']},
				   {id: 10,summary: 'Find it fast. A Bristol based company that advises new co-operatives asked for a directory of all their clients to give out. We tried to strike a balance between the informative listings and articles and some pictures of the happy co-ops that the CDA have helped.',headline: 'Find it fast',image: 'large_cda.jpg',thumb: 'thumb_cda.jpg',paragraphs: ['Easy-on-the-eye directory for co-op advisory company. CDA (Brave) Ltd produce a directory every year of all the co-operatives they\'ve helped set up. We had to find a way to make the listings easy to read and mix nicely with some information about the services offered and add imagery to break up the text. Existing logos had to be sensitively integrated into the overall look but a more muted palette overall helped give the directory a fresh, modern look.','We also made sure we used a mix of recycled and sustainable paper stocks and vegetable inks to add to the community spirit that runs throughout CDA\'s work. The end result was a directory that is easy to use and looks good without breaking the budget','Hopefully as the directory grows year by year we can keep coming up with new ways to fit everyone in...','<a href="design_2.html?category=design&client=cda"><strong>Click here to see an example<strong/><a/>']},
				   {id: 11,summary: 'Going green. New identity and website design for local company that helps landlords assess their property energy levels to keep it legal.',headline: 'Going green',image: 'large_epc.jpg',thumb: 'thumb_epc.jpg',paragraphs: ['New government legislation this year means landlords now have to get their properties energy certified before they can legally let to tenants. EPC2let is a service to give landlords advice and search options and to find a local assessor to provide an Energy Performance Certificate (EPC). We gave them a cheerful identity and designed a website to make this as simple as possible.','The company logo had to reflect the simple concept and be easy for internet searches. A green and grey logo with a secondary colour palette gives more options for making things stand out. The website design was split into 2 basic categories to keeps things simple. Landlords and Assessors each have their own areas, rather than having to scroll through endless drop down menus. A little bit of info about EPC2let is all the user needs to get their information and make full use of the service. Going green has never been so easy.','<a href="design_2.html?category=web&client=epc"><strong>Click here to see an example<strong/><a/>']},
				   {id: 12,summary: 'Spine tinglingly good. Zimmer Spine are launching a new product and asked us for some new images to show it off. Hi tech digital photography matches hi tech implant for maximum effect.',headline: 'Spine-tingingly good',image: 'large_z_dtl.jpg',thumb: 'thumb_z_dtl.jpg',paragraphs: ['How do you make clients understand at a glance how amazing your new product is? Get some fabulous images to prove it. We worked on a two day shoot to provide a portfolio of images for a new surgical implant for Zimmer Spine. Not only did they have to look wonderful but we also needed to get in all the technical bits and pieces. Tricky when the thing is only a few centimetres big. We used all our powers of state of the art photography and digital retouching to make the products look their best.','We also took care of our clients who had travelled from Switzerland, making sure they had a good hotel, organising travel arrangements and ensuring a non stop supply of snacks to keep them occupied during the shoot. Now they have a big picture library to maximise the potential of their next marketing campaign. Guess we may be busy for a while.']},
				   {
					   	id: 16,
					   	summary: 'design146 sent back to the classroom to learn how to make the most of one of Bristol\'s great schools. By strengthening their brand and adverts we want to make Clifton High come out on top.',
					   	headline: 'Top of the class',
					   	alternateheadline: 'Learning curve',
					   	image: 'CHS.jpg',
					   	thumb: 'CHSsm.jpg',
					   	paragraphs: ['Clifton High school is one of Bristol\'s top schools and has a new marketing team to push forward it\'s branding and ad strategy. The school is keen to keep it\'s look and brand as progressive as it\'s ethos, so design146 has come up with ideas for the last six months. The school is well established and has an existing logo but we thought we can make it work that little bit harder.',
									 'The advertising campaigns also need gentle handling as parents and governors are all involved in the way the school is presented and are enthusiastic critics. We\'ve come up with some exciting new ad options to make the school stand out in local publications and a few more unusual locations to boot.',
									 'The campaigns are designed to appeal to prospective parents on many levels. The heritage and past achievements of the school are a given, so we\'re also trying to show that Clifton High is about nurturing the whole character of the individual child as well as their academic and sporting achievements. Hopefully we\'ll pass the test!']
				   },
				   {
					   	id: 17,
					   	summary: 'When we heard that Portishead open air pool was up for a re launch we couldn\'t resist getting involved. design146 has \'donated\' a logo and launch poster to show off this well loved local landmark and bring back the crowds this summer.',
					   	headline: 'Sink or Swim?',
					   	image: 'POP.jpg',
					   	thumb: 'POPsm.jpg',
					   	paragraphs: ['A team of volunteers are desperately trying to raise the profile and rescue the community open air pool on the seafront in Portishead. After a few years of decline the pool needs to attract a new generation of locals to enjoy the sea air. We were happy to lend some support to a good cause.',
									 'Andy\'s logo design is based on the striking architecture of the pool itself and uses fresh, breezy colours.  An evocative poster to promote the re launch, some signage and stationery will help the committee to give out the right image to match the re-vamped pool. A TV company is helping out with a makeover to the existing facilities, all to be televised later this year.',
									 'Hopefully all this will be enough to get the pool back into the heart of the community and win over a new generation of users to keep it going for another 50 years. Go and have a look!']
				   },
				   {
					   	id: 18,
					   	summary: 'Getting together a brochure, user manual, press pack, stationery and bannerstands for a cool new teaching product for Radio In Schools in record time was a huge challenge. Luckily we passed the test.',
					   	headline: 'Taught us a lesson',
					   	image: 'RIS.jpg',
					   	thumb: 'RISsm.jpg',
					   	paragraphs: ['Our client, Radio in Schools, had an innovative, engaging new product for schoolchildren and wanted to present it\'s brand new online podcasting platform to teachers in a simple but eye-catching format. Lots of information needed to be included into a user pack for schools and also some promotional items. The only snag was a very short deadline! ',
									 'Using supplied pictures and the existing logo we laid out the Promotional brochure, Getting Started Pack, pdf Media Pack, stationery and display bannerstands. These items followed the brand colour ways and combined with bright aspirational imagery to get the idea across.']
   				   },
				   {
					   	id: 19,
					   	summary: 'How do you show your sales team where everyone\'s at in a competitive but dynamic way? We put forward an ace new digital chart that shows all the sales force on a Formula One style racing track. ',
					   	headline: 'Winning formula',
					   	image: 'FNG.jpg',
					   	thumb: 'FNGsm.jpg',
					   	paragraphs: ['Keeping on track of your sales figures and motivating the team can be a daunting task. Zimmer needed to get their monthly results published in a way that was interesting and would encourage a bit of healthy competition. ',
									 'We came up with a way of showing sales progress in a digital format on a motor racing style grid. The client can add the data and it auto-generates into new positions on the racing track. Racing style graphics give a nod to the high octane world of sales and are visually far more exciting than a series of graphs. ',
									 'As the financial year moves on the results and data can be increased to give a traceable progress report. This concept can be adapted to include other areas too. We\'re hoping this years sales conference will be held at Le Mans and we get an invite.']
				   },
				   {
					   	id: 20,
					   	summary: 'Bristol legal firm wanted some fun advertising in a unique, open air, poolside location. As \'fun\' and \'solicitors\' are not often associated we had a bit of a challenge! Combining Humphrey\'s existing logo and the pool\'s identity gave a bright and enticing solution.',
					   	headline: 'Taking the plunge',
					   	image: 'Humphreys.jpg',
					   	thumb: 'Humphreyssm.jpg',
					   	paragraphs: ['A well respected solicitors had a chance to advertise to a new market in an unusual location. Portishead open air pool were having a re-launch and hoping to attract a lot of the new families in this rapidly expanding town. This is a great chance for our client to attract some new customers too.',
									 'Bearing in mind the location and history of the pool and the target audience, we came up with a breezy style of adverts that would hopefully appeal to locals and sit comfortably within the pool environment. Depending on the physical location of the posters, ie poolside or changing areas, we adjusted the text and images to suit. A series of flyers to issue around the town will help re-enforce the brand.',
									 'The results are a long way form the rather formal style associated with most solicitors and already making a bit of a splash. (Sorry...couldn\'t resist!)']
				   },
				   {
					   	id: 21,
					   	summary: 'Indoor sporting facility needs to contact a big number of different clients with news updates but without the expense of constant reprints. Our solution was to design a customized emailer. Less hassle, less expense.',
					   	headline: 'Back of the net!',
					   	image: 'AIS.jpg',
					   	thumb: 'AISsm.jpg',
					   	paragraphs: ['Action Indoor sports had spent a large part of the marketing budget on a new web site but still needed more. Their client base is huge and varied and they needed some inexpensive solutions to get news updates out without it costing lots each time.',
									 'With so much on offer for different activity organizations we felt the info was becoming a bit hard to pick out online. We suggested a secondary icon system to help make the differences clear between the activity groups. We then produced a email newsflash system to get the message out fast.',
									 'The best part is Action Indoor sports can infill the data themselves and so keep their client base up to date on the latest offers and events for minimal costs.']
				   },
				   {
					   	id: 22,
					   	summary: 'Windmill Hill City Farm needed to raise awareness and raise cash. We designed a useful mini desk calendar featuring idyllic scenes from life on the farm to be sold in the gift shop.',
					   	headline: 'Farm fundraiser',
					   	alternateheadline: 'Count your chickens',
					   	image: 'large_windmillhill.jpg',
					   	thumb: 'thumb_windmillhill.jpg',
					   	paragraphs: ['In these cash strapped times charities are working extra hard to keep everything going and Windmill Hill City Farm is no exception. Completely run by dedicated volunteers they are always looking for fresh ideas to raise awareness and funds. We suggested a calendar that could feature scenes of the farm throughout the year to encourage more visitors and be sold in the shop.',
									 'The Farm supplied some gorgeous pictures of the seasonal life on the farm and we donated our time to design a mini desktop calendar. We selected the best scenes showing the range of animals and produce grown combined with visitors enjoying a fun day out and the various activities and classes held throughout the year on the Farm.',
									 'The end result looks great, is useful for at-a-glance planning and profits go back into maintaining the Farm for another year. On sale in the shop now, make sure you visit and get yours soon. Great stocking filler too!']
				   },
				   {
					   	id: 23,
					   	summary: 'Andrews Estate Agents wanted a fresh look at their marketing campaigns for press and in branch. We\'re happy to be working with them showing the property market is far from depressed!',
					   	headline: 'Home is where the heart is!',
					   	alternateheadline: 'Property for all?',
					   	image: 'large_andrews.jpg',
					   	thumb: 'thumb_andrews.jpg',
					   	paragraphs: ['We\'re thrilled to now be working with Andrews Estate Agency, a fantastic company that support the property and rental market across the South West. Keeping clients up to speed on offers and their full range of services is definitely a challenge for their marketing team. Andrews have a strong brand so we need to work within their guidelines when promoting them.',
									 'So far we\'ve been asked for concepts for campaigns from everything to door drop mailers, new branch openings, window cards and press adverts. Coming up with new ideas for collateral for an estate agency that is appropriate for everyone in their diverse range of clients certainly keeps us on our toes. We need to appeal to all age groups and levels of experience in the property sector and re-enforce Andrew\'s brand as a market leader in the South West.',
									 'So far we\'ve managed to keep coming up with ideas and imagery that appeals, all within fairly strict budgets. We\'ve also tried to inject a small amount of humour where possible to show that the property market is back on the up and Andrew\'s are ahead of the game.']
				   },
				   {
					   	id: 24,
					   	summary: 'Got a great idea but need people to know about it? Solar energy company Ecocetera needed a simple eco but inexpensive mailer to target more homeowners about the simplicity of panels.',
					   	headline: 'Eco chic',
					   	alternateheadline: 'Green power',
					   	image: 'large_ecocetera.jpg',
					   	thumb: 'thumb_ecocetera.jpg',
					   	paragraphs: ['Bristol firm Ecocetera are growing fast but wanted to re-fresh their brand and raise more awareness to encourage people to use solar panels on their own homes. Not only is it good for the environment but it can also save you money and is less difficult to install than people may think. We looked at their existing brand and making a few changes brought it up to date and suggested a simple A5 promotional flyer.',
									 'The re-freshed brand, some breezy imagery and simple, straight talking text produced an at-a-glance flyer that gets all the key points across in moments. As green credentials are paramount we printed the flyer on recycled and 100% sustainably produced card and used only vegetable inks in the process.',
									 'A later phase will be to look at re-freshing the existing web site. We offer a copywriting service to make sure that all text is as clear and precise as possible. The client was very happy with the flyers so keep an eye on your doormat to find out more.']
				   }
				];

function getNews(n)
{
	
	var theStory = newsStories.find(function(s) {return s.id == n});
	return theStory;	
}

var current_news_page = 'newsthumbs1';

function switchNewsPage(page,pagelink)
{
	switch(page)
	{
		case 1:
		new Effect.Fade($(current_news_page),{duration:0.2});
		new Effect.Appear($('newsthumbs' + page), { queue: 'end' },{duration:0.2});
		populateNews(24,false);
		break;
		case 2:
		new Effect.Fade($(current_news_page),{duration:0.2});
		new Effect.Appear($('newsthumbs' + page), { queue: 'end' },{duration:0.2});
		populateNews(13,false);
		break;
		case 3:
		new Effect.Fade($(current_news_page),{duration:0.2});
		new Effect.Appear($('newsthumbs' + page), { queue: 'end' },{duration:0.2});
		populateNews(4,false);
		break;
	}
	current_news_page = 'newsthumbs' + page;
	$('pager').descendants().each(function(elt){elt.removeClassName('purple')});
	pagelink.addClassName("purple");
}












