  function setProduct(name,desc,size,colr,pric,othe,bott,id) {
		var imageDir = "wedding-hire-hire\/";
    var imageFile = imageDir + id + ".jpg";
    document.main_image.src = imageFile;
    document.getElementById('cat_heading').innerHTML = name;
    document.getElementById('cat_description').innerHTML = desc;
    document.getElementById('cat_sizes').innerHTML = size;
    document.getElementById('cat_colours').innerHTML = colr;
    document.getElementById('cat_prices').innerHTML = pric;
    document.getElementById('cat_other').innerHTML = othe;
    document.getElementById('cat_bottom').innerHTML = bott;

		resetThumbs();

		var idToChange = 'th_' + id;
		var newImage = imageDir + id + "-th-on.jpg";
		var element = document.getElementById(idToChange);

		//alert("CHANGE " + idToChange + " to " + newImage);

		element.src = newImage;

		}

	function resetThumbs() {
    var imageDir = "wedding-hire-hire\/";
		document.getElementById('th_01').src = imageDir + "01-th.jpg";
		document.getElementById('th_02').src = imageDir + "02-th.jpg";
		document.getElementById('th_03').src = imageDir + "03-th.jpg";
		document.getElementById('th_04').src = imageDir + "04-th.jpg";
		document.getElementById('th_05').src = imageDir + "05-th.jpg";
		document.getElementById('th_06').src = imageDir + "06-th.jpg";
	}
  
  function change_01() {
    var name = "Ambassador",
        desc = "",
        size = "36 reg to 48 reg",
        colr = "navy/black/ivory",
        pric = "&pound;150 black and navy<br/>&pound;160 ivory",
        othe = "",
        bott = "Call for expert advice, guidance, product availability and delivery status.",
        id   = "01";
    setProduct(name,desc,size,colr,pric,othe,bott,id);
  }
  
  function change_02() {
    var name = "Silver Tail Suit",
        desc = "",
        size = "36 short to 50 long",
        colr = "silver/black/ivory",
        pric = "&pound;89.95",
        othe = "",
        bott = "Call for expert advice, guidance, product availability and delivery status.",
        id   = "02";
    setProduct(name,desc,size,colr,pric,othe,bott,id);
  }

  function change_03() {
    var name = "Mozart",
        desc = "",
        size = "34 reg to 56 reg",
        colr = "black/navy",
        pric = "&pound;99.95",
        othe = "",
        bott = "Call for expert advice, guidance, product availability and delivery status.",
        id   = "03";
    setProduct(name,desc,size,colr,pric,othe,bott,id);
  }

  function change_04() {
    var name = "Windsor Lightweight tail coat",
        desc = "",
        size = "34 reg to 52 reg",
        colr = "(blueygrey) slate",
        pric = "",
        othe = "",
        bott = "Call for expert advice, guidance, product availability and delivery status.",
        id   = "04";
    setProduct(name,desc,size,colr,pric,othe,bott,id);
  }

  function change_05() {
    var name = "Mozart Suit with Pinstripe Trousers",
        desc = "",
        size = "34 reg to 56 reg",
        colr = "Navy/Black",
        pric = "&pound;99.95",
        othe = "",
        bott = "Call for expert advice, guidance, product availability and delivery status.",
        id   = "05";
    setProduct(name,desc,size,colr,pric,othe,bott,id);
  }

  function change_06() {
    var name = "Individual Suit 06",
        desc = "(06) Description of the suit goes here",
        size = "(06) Sizes",
        colr = "(06) Colours",
        pric = "(06) Price",
        othe = "(06) Other information.",
        bott = "Call for expert advice, guidance, product availability and delivery status.",
        id   = "06";
    setProduct(name,desc,size,colr,pric,othe,bott,id);
  }

