// JavaScript Document
<!--

// Create the slideshow object for Radius Interior Panels
ss = new slideshow("ss");
ss.timeout = 3000;

// Create the slides and add them to the slideshow.
s = new slide();
s.src =  "assets/graphics/custom_millwork/radius/interior/Rad-I-Panels_1.jpg";
ss.add_slide(s);

s = new slide();
s.src =  "assets/graphics/custom_millwork/radius/interior/Rad-I-Panels_2.jpg";
ss.add_slide(s);

s = new slide();
s.src =  "assets/graphics/custom_millwork/radius/interior/Rad-I-Panels_3.jpg";
ss.add_slide(s);

s = new slide();
s.src =  "assets/graphics/custom_millwork/radius/interior/Rad-I-Panels_4.jpg";
ss.add_slide(s);

s = new slide();
s.src =  "assets/graphics/custom_millwork/radius/interior/Rad-I-Panels_5.jpg";
ss.add_slide(s);

// The following loop sets an attribute for all of the slides.
// This is easier than setting the attributes individually.

for (var i=0; i < ss.slides.length; i++) {

  s = ss.slides[i];
  s.target = "ss_popup";
  s.text = "<em class=slidetext>Custom interior panel work can be run in curved wall sections or paneled curved jambs. Choose from flat panel or raised with a variety of panel moulding styles.</em>";
  s.attr = "width=497,height=500,resizable=yes,scrollbars=yes";

}

// Create the slideshow object for Radius Interior Trim
ss1 = new slideshow("ss1");
ss1.timeout = 3000;

// Create the slides and add them to the slideshow.
s = new slide();
s.src =  "assets/graphics/custom_millwork/radius/interior/Rad-I-Trim_1.jpg";
ss1.add_slide(s);

s = new slide();
s.src =  "assets/graphics/custom_millwork/radius/interior/Rad-I-Trim_2.jpg";
ss1.add_slide(s);

s = new slide();
s.src =  "assets/graphics/custom_millwork/radius/interior/Rad-I-Trim_3.jpg";
ss1.add_slide(s);

s = new slide();
s.src =  "assets/graphics/custom_millwork/radius/interior/Rad-I-Trim_4.jpg";
ss1.add_slide(s);

s = new slide();
s.src =  "assets/graphics/custom_millwork/radius/interior/Rad-I-Trim_5.jpg";
ss1.add_slide(s);

s = new slide();
s.src =  "assets/graphics/custom_millwork/radius/interior/Rad-I-Trim_6.jpg";
ss1.add_slide(s);

// The following loop sets an attribute for all of the slides.
// This is easier than setting the attributes individually.

for (var i=0; i < ss1.slides.length; i++) {

  s = ss1.slides[i];
  s.target = "ss1_popup";
  s.text = "<em class=slidetext>Our Custom Millwork Shop can match any moulding in a curved casing, crown, or base in any species. From elliptical casings, curved base moulding, to curved crown moulding -- convex or concave -- we can do it all.</em>";
  s.attr = "width=497,height=500,resizable=yes,scrollbars=yes";

}

//-->
