// JavaScript Document

function displaylargeimg(id,imgcat, alttext)
{
  //alert(id+"-"+imgcat+"-"+alttext);//windows-01-diamond-lead
  var limg="/images/windows-"+id+"-"+imgcat+"-large.jpg";
  //alert(limg);
  document.getElementById("largeimg").src=limg;
  //var limgalt="";
  var wincon=getcontent(id);
  //var modimgcat=imgcat.replace("-"," ");
  //modimgcat=modimgcat.substring(0,1).toUpperCase();
  
  //limgalt= capitalizeMe(modimgcat);
  document.getElementById("largeimg").alt=alttext;
  document.getElementById("win_headline").innerHTML =alttext;
  document.getElementById("win_text").innerHTML =wincon;
  
  
}
function getcontent(cid)
{
	 var content="";
	 if(cid=='01')
	 {
		 var content="Nothing can beat the timeless Old English look of diamond lead on your windows and doors. This classic style adds an exclusive feel to both contemporary and traditional homes, and now our energy efficient glazing is even more affordable with our latest offer!";
	}
	if(cid=='02')
	 {
		 var content="Cottage or terrace, detached or apartment, the geometric pattern of square lead can lift your home and gives it a new lease of life. With our energy saving glass, you can also save money by cutting heat loss, see our latest offer.";
	}
	if(cid=='03')
	 {
		 var content="Guaranteed to turn heads, Safestyle UK's distinctive gold fret leaded windows are the ultimate luxury. The elegant touch of gold fret complements all profile colours including white, oak and rosewood. Give your home a contemporary twist with beautiful gold fret windows and doors.";
	}
	if(cid=='04')
	 {
		 var content="Traditional or modern, white Fret windows can give that extra special look to any home. Also available to match Oak or Rosewood windows and doors, you can add a touch of class to your home with all types of Fret. Why not take a look at our latest offer!";
	}
	if(cid=='05')
	 {
		 var content="Our Oak wood profile is very realistic, giving that authentic timber look. A lighter golden-coloured wood effect for those who want the traditional look to complement their home, but don’t want all the hassles with maintenance associated with real timber.";
	 }
	if(cid=='06')
	 {
		 var content="Safestyle's Rosewood profile will give a superb, deep timber colour to your home for that traditional, sophisticated look of real wood, but it comes without the maintenance hassles and issues associated with the real thing. Our energy saving glass also helps cut your heating bills.";
	}
	if(cid=='07')
	 {
		 var content="The white uPVC gives the modern clean look, especially as we use the attractive sculptured Vogue profile with its neat rounded edges and aesthetic lines, it will complement your home beautifully. And with the latest energy saving glass technology, you can reduce your energy bills.";
	}
	if(cid=='08')
	 {
		 var content="The distinctive ornamentation of bevelled glass windows adds the ultimate in bespoke design for windows and doors. Subtle or daring, you can choose from a wide range of bevelled glass designs to suit your taste perfectly. And with our energy efficient double glazing you'll save on heating.";
	}
	if(cid=='09')
	 {
		 var content="Whether arched, round, square, modern or traditional, Safestyle windows are entirely made-to-measure to suit the needs of your property. Arched windows are specially made in our manufacturing facility for a perfect fit. And with energy saving glass it's the perfect window!";
	}
	if(cid=='10')
	 {
		 var content="Make a statement with stunning colours and leads with Safestyle UK windows and doors. Contemporary or traditional, Safestyle UK's range of beautiful coloured glass ensures your home leaps out from the crowd. Choose from hundreds of designs and patterns.";
	}
	if(cid=='11')
	 {
		 var content="What better way to make full use of the space your bay windows provide than with Safestyle UK's distinctive profiles and energy saving glass. Let more light in to your home and see more of the outside, while also cutting heating bills with our energy saving glass.";
	}
	if(cid=='12')
	 {
		 var content="Security for peace of mind is one of our top priorities, and at Safestyle we make sure all our windows and doors have the latest, robust multi-point locking systems. Fire escape hinges are also available, so you can feel safe and secure in your home."
;
	}
	return content;
}
function capitalizeMe(value) {
        val = value;
        newVal = '';
        val = val.split(' ');
        for(var c=0; c < val.length; c++) {
                newVal += val[c].substring(0,1).toUpperCase() +
val[c].substring(1,val[c].length) + ' ';
        }
       return newVal;
}

