  function setProduct(name,desc,size,colr,pric,othe,bott,id) {
		var imageDir = "formal-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 = "formal-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 = "Single Breasted Dinner Suit",
        desc = "",
        size = "36 reg to 60 reg",
        colr = "",
        pric = "&pound;38<br/>&pound;49 with shirt and bow tie",
        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 = "Double Breasted Dinner Suit",
        desc = "",
        size = "36 reg to 60 reg",
        colr = "",
        pric = "&pound;38<br/>&pound;49 with shirt and bow tie",
        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 = "Masterhand Madrid Suit",
        desc = "Suitable for formal wear or that special occasion",
        size = "34 reg to 56 reg",
        colr = "(03) Colours",
        pric = "&pound;60<br/>&pound;70 with shirt and tie",
        othe = "&pound;",
        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 = "Individual Suit 04",
        desc = "(04) Description of the suit goes here",
        size = "(04) Sizes",
        colr = "(04) Colours",
        pric = "(04) Price",
        othe = "(04) Other information.",
        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 = "Individual Suit 05",
        desc = "(05) Description of the suit goes here",
        size = "(05) Sizes",
        colr = "(05) Colours",
        pric = "(05) Price",
        othe = "(05) Other information.",
        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);
  }

