function styleSwitcher() {

			//toggle button
			var button = $("#Switcher");
			
			//initialState set to default css
			var initialState = "default";
			// the text of the button when the panel's ShowNormal
			var NormalCss = "Show full website";
			// the text of the button when the panel's ShowTextOnly
			var TextCss = "Text Only";
			 
			if($.cookie("State") == undefined) {
				$.cookie("State", initialState);
			}
			
			var state = $.cookie("State");
				
			
			if(state == "default") {
				button.text(TextCss);
			}
			
			if(state == "ShowTextOnly") {
				button.text(TextCss);
				$.cookie("State", "ShowTextOnly");
			}
			
			if(state == "ShowNormal") {
				button.text(NormalCss);
				$.cookie("State", "ShowNormal");
				$("link[rel=stylesheet]").attr({href : "/css/text.css"});
				
				
				/* Empty and append  site content for Text Only premier-inn-tamworth.aspx */
				
				$("#FlashContainer").empty();
				$("#FlashContainer, #FlashAlternativeHolder").append("<br/><br/><strong>Tamworth Premier Inn</strong><br/><br/><strong>Solar power</strong><br/>Solar panels capture the heat generated by the sun and use it to provide hot water for the hotel&#8217;s bathrooms.<br/><br/><strong>Building that breathes</strong><br/>The hotel&#8217;s ventilation system is linked with a heat recovery system. Heat is recovered from the warm extracted air of the bathrooms and mixed with fresh air to deliver fresh warm air to the bedrooms.<br/><br/><strong>Clever lighting</strong><br/>Low energy LED light bulbs are fitted with motion sensors.  When nobody is in the room, the lights will switch off.<br/><br/><strong>Re-using water</strong><br/>Water is collected from showers and baths together with rainwater harvested from the roof.  This water is then cleaned and filtered before being used to flush the hotel toilets.<br/><br/><strong>Earth&#8217;s natural energy</strong><br/>In the winter the ground source heat pump brings heat from the ground to generate warm air to heat the bedrooms.  It can also produce hot water for the bathrooms.<br/><br/>In the summer a ground source heat pump can produce hot water all year round.  When producing hot water, cold energy would normally be dumped back into the ground. However, in the summer months, this energy is used to generate a cool air supply to the bedrooms.");
				
			}
		   
			button.click(function(){
				if($.cookie("State") == "ShowNormal") {
					$.cookie("State", "ShowTextOnly");
					button.text(TextCss);
					//$("link[rel=stylesheet]").attr({href : "/css/style.css"});
					
				} else {
					$.cookie("State", "ShowNormal");
					button.text(NormalCss);
					//$("link[rel=stylesheet]").attr({href : "/css/text.css"});
				}
				
				return true;
			});

}