  function setProduct(name,desc,size,colr,pric,othe,bott,id) {
		var imageDir = "wedding-hire-buy\/";
    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-buy\/";
		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 = "Individual Suit 01",
        desc = "(01) Description of the suit goes here",
        size = "(01) Sizes",
        colr = "(01) Colours",
        pric = "(01) Price",
        othe = "(01) Other information.",
        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 = "Individual Suit 02",
        desc = "(02) Description of the suit goes here",
        size = "(02) Sizes",
        colr = "(02) Colours",
        pric = "(02) Price",
        othe = "(02) Other information.",
        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 = "Individual Suit 03",
        desc = "(03) Description of the suit goes here",
        size = "(03) Sizes",
        colr = "(03) Colours",
        pric = "(03) Price",
        othe = "(03) Other information.",
        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);
  }
