/*==================================================*
 $Id: slideshow.js,v 1.16 2003/10/14 12:39:00 pat Exp $
 Copyright 2000-2003 Patrick Fitzgerald
 http://slideshow.barelyfitz.com/

 This program is free software; you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
 the Free Software Foundation; either version 2 of the License, or
 (at your option) any later version.

 This program is distributed in the hope that it will be useful,
 but WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 GNU General Public License for more details.

 You should have received a copy of the GNU General Public License
 along with this program; if not, write to the Free Software
 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 *==================================================*/

// There are two objects defined in this file:
// "slide" - contains all the information for a single slide
// "slideshow" - consists of multiple slide objects and runs the slideshow

//==================================================
// slide object
//==================================================
function slide(src,link,text, price, target,attr) {
  // This is the constructor function for the slide object.
  // It is called automatically when you create a new slide object.
  // For example:
  // s = new slide();

  // Image URL
  this.src = src;

  // Link URL
  this.link = link;

  // Text to display
  this.text = text;
  
  // Price to display
  this.price = price;

  // Name of the target window ("_blank")
  this.target = target;

  // Custom duration for the slide, in milliseconds.
  // This is an optional parameter.
  // this.timeout = 3000

  // Attributes for the target window:
  // width=n,height=n,resizable=yes or no,scrollbars=yes or no,
  // toolbar=yes or no,location=yes or no,directories=yes or no,
  // status=yes or no,menubar=yes or no,copyhistory=yes or no
  // Example: "width=200,height=300"
  this.attr = attr;

  // Create an image object for the slide
  if (document.images) {
    this.image = new Image();
  }

  // Flag to tell when load() has already been called
  this.loaded = false;

  //--------------------------------------------------
  this.load = function() {
    // This method loads the image for the slide

    if (!document.images) { return; }

    if (!this.loaded) {
      this.image.src = this.src;
      this.loaded = true;
    }
  }

  //--------------------------------------------------
  this.hotlink = function() {
    // This method jumps to the slide's link.
    // If a window was specified for the slide, then it opens a new window.

    var mywindow;

    // If this slide does not have a link, do nothing
    if (!this.link) return;

    // Open the link in a separate window?
    if (this.target) {

      // If window attributes are specified,
      // use them to open the new window
      if (this.attr) {
        mywindow = window.open(this.link, this.target, this.attr);
  
      } else {
        // If window attributes are not specified, do not use them
        // (this will copy the attributes from the originating window)
        mywindow = window.open(this.link, this.target);
      }

      // Pop the window to the front
      if (mywindow && mywindow.focus) mywindow.focus();

    } else {
      // Open the link in the current window
      location.href = this.link;
    }
  }
}

//==================================================
// slideshow object
//==================================================
function slideshow( slideshowname ) {
  // This is the constructor function for the slideshow object.
  // It is called automatically when you create a new object.
  // For example:
  // ss = new slideshow("ss");

  // Name of this object
  // (required if you want your slideshow to auto-play)
  // For example, "SLIDES1"
  this.name = slideshowname;

  // When we reach the last slide, should we loop around to start the
  // slideshow again?
  this.repeat = true;

  // Number of images to pre-fetch.
  // -1 = preload all images.
  //  0 = load each image is it is used.
  //  n = pre-fetch n images ahead of the current image.
  // I recommend preloading all images unless you have large
  // images, or a large amount of images.
  this.prefetch = 1;

  // IMAGE element on your HTML page.
  // For example, document.images.SLIDES1IMG
  this.image;

  // ID of a DIV element on your HTML page that will contain the text.
  // For example, "slides2text"
  // Note: after you set this variable, you should call
  // the update() method to update the slideshow display.
  this.textid;

  // ID of a DIV element on your HTML page that will contain the price.
  // For example, "slides2price"
  // Note: after you set this variable, you should call
  // the update() method to update the slideshow display.
  this.priceid;
  
  // TEXTAREA element on your HTML page.
  // For example, document.SLIDES1FORM.SLIDES1TEXT
  // This is a depracated method for displaying the text,
  // but you might want to supply it for older browsers.
  this.textarea;

  // Milliseconds to pause between slides.
  // Individual slides can override this.
  this.timeout = 5000;

  // Hook functions to be called before and after updating the slide
  // this.pre_update_hook = function() { }
  // this.post_update_hook = function() { }

  // These are private variables
  this.slides = new Array();
  this.current = 0;
  this.timeoutid = 0;

  //--------------------------------------------------
  // Public methods
  //--------------------------------------------------
  this.add_slide = function(slide) {
    // Add a slide to the slideshow.
    // For example:
    // SLIDES1.add_slide(new slide("s1.jpg", "link.html"))
  
    var i = this.slides.length;
  
    // Prefetch the slide image if necessary
    if (this.prefetch == -1) {
      slide.load();
    }

    this.slides[i] = slide;
  }

  //--------------------------------------------------
  this.play = function(timeout) {
    // This method implements the automatically running slideshow.
    // If you specify the "timeout" argument, then a new default
    // timeout will be set for the slideshow.
  
    // Make sure we're not already playing
    this.pause();
  
    // If the timeout argument was specified (optional)
    // then make it the new default
    if (timeout) {
      this.timeout = timeout;
    }
  
    // If the current slide has a custom timeout, use it;
    // otherwise use the default timeout
    if (typeof this.slides[ this.current ].timeout != 'undefined') {
      timeout = this.slides[ this.current ].timeout;
    } else {
      timeout = this.timeout;
    }

    // After the timeout, call this.loop()
    this.timeoutid = setTimeout( this.name + ".loop()", timeout);
  }

  //--------------------------------------------------
  this.pause = function() {
    // This method stops the slideshow if it is automatically running.
  
    if (this.timeoutid != 0) {

      clearTimeout(this.timeoutid);
      this.timeoutid = 0;

    }
  }

  //--------------------------------------------------
  this.update = function() {
    // This method updates the slideshow image on the page

    // Make sure the slideshow has been initialized correctly
    if (! this.valid_image()) { return; }
  
    // Call the pre-update hook function if one was specified
    if (typeof this.pre_update_hook == 'function') {
      this.pre_update_hook();
    }

    // Convenience variable for the current slide
    var slide = this.slides[ this.current ];

    // Determine if the browser supports filters
    var dofilter = false;
    if (this.image &&
        typeof this.image.filters != 'undefined' &&
        typeof this.image.filters[0] != 'undefined') {

      dofilter = true;

    }

    // Load the slide image if necessary
    slide.load();
  
    // Apply the filters for the image transition
    if (dofilter) {

      // If the user has specified a custom filter for this slide,
      // then set it now
      if (slide.filter &&
          this.image.style &&
          this.image.style.filter) {

        this.image.style.filter = slide.filter;

      }
      this.image.filters[0].Apply();
    }

    // Update the image.
    this.image.src = slide.image.src;

    // Play the image transition filters
    if (dofilter) {
      this.image.filters[0].Play();
    }

    // Update the text
    this.display_text();

    // Update the price
    this.display_price();
	
    // Call the post-update hook function if one was specified
    if (typeof this.post_update_hook == 'function') {
      this.post_update_hook();
    }

    // Do we need to pre-fetch images?
    if (this.prefetch > 0) {

      var next, prev, count;

      // Pre-fetch the next slide image(s)
      next = this.current;
      prev = this.current;
      count = 0;
      do {

        // Get the next and previous slide number
        // Loop past the ends of the slideshow if necessary
        if (++next >= this.slides.length) next = 0;
        if (--prev < 0) prev = this.slides.length - 1;

        // Preload the slide image
        this.slides[next].load();
        this.slides[prev].load();

        // Keep going until we have fetched
        // the designated number of slides

      } while (++count < this.prefetch);
    }
  }

  //--------------------------------------------------
  this.goto_slide = function(n) {
    // This method jumpts to the slide number you specify.
    // If you use slide number -1, then it jumps to the last slide.
    // You can use this to make links that go to a specific slide,
    // or to go to the beginning or end of the slideshow.
    // Examples:
    // onClick="myslides.goto_slide(0)"
    // onClick="myslides.goto_slide(-1)"
    // onClick="myslides.goto_slide(5)"
  
    if (n == -1) {
      n = this.slides.length - 1;
    }
  
    if (n < this.slides.length && n >= 0) {
      this.current = n;
    }
  
    this.update();
  }


  //--------------------------------------------------
  this.goto_random_slide = function(include_current) {
    // Picks a random slide (other than the current slide) and
    // displays it.
    // If the include_current parameter is true,
    // then 
    // See also: shuffle()

    var i;

    // Make sure there is more than one slide
    if (this.slides.length > 1) {

      // Generate a random slide number,
      // but make sure it is not the current slide
      do {
        i = Math.floor(Math.random()*this.slides.length);
      } while (i == this.current);
 
      // Display the slide
      this.goto_slide(i);
    }
  }


  //--------------------------------------------------
  this.next = function() {
    // This method advances to the next slide.

    // Increment the image number
    if (this.current < this.slides.length - 1) {
      this.current++;
    } else if (this.repeat) {
      this.current = 0;
    }

    this.update();
  }


  //--------------------------------------------------
  this.previous = function() {
    // This method goes to the previous slide.
  
    // Decrement the image number
    if (this.current > 0) {
      this.current--;
    } else if (this.repeat) {
      this.current = this.slides.length - 1;
    }
  
    this.update();
  }


  //--------------------------------------------------
  this.shuffle = function() {
    // This method randomly shuffles the order of the slides.

    var i, i2, slides_copy, slides_randomized;

    // Create a copy of the array containing the slides
    // in sequential order
    slides_copy = new Array();
    for (i = 0; i < this.slides.length; i++) {
      slides_copy[i] = this.slides[i];
    }

    // Create a new array to contain the slides in random order
    slides_randomized = new Array();

    // To populate the new array of slides in random order,
    // loop through the existing slides, picking a random
    // slide, removing it from the ordered list and adding it to
    // the random list.

    do {

      // Pick a random slide from those that remain
      i = Math.floor(Math.random()*slides_copy.length);

      // Add the slide to the end of the randomized array
      slides_randomized[ slides_randomized.length ] =
        slides_copy[i];

      // Remove the slide from the sequential array,
      // so it cannot be chosen again
      for (i2 = i + 1; i2 < slides_copy.length; i2++) {
        slides_copy[i2 - 1] = slides_copy[i2];
      }
      slides_copy.length--;

      // Keep going until we have removed all the slides

    } while (slides_copy.length);

    // Now set the slides to the randomized array
    this.slides = slides_randomized;
  }


  //--------------------------------------------------
  this.get_text = function() {
    // This method returns the text of the current slide
  
    return(this.slides[ this.current ].text);
  }

  //--------------------------------------------------
  this.get_price = function() {
    // This method returns the price of the current slide
  
    return(this.slides[ this.current ].price);
  }

  //--------------------------------------------------
  this.get_all_text = function(before_slide, after_slide) {
    // Return the text for all of the slides.
    // For the text of each slide, add "before_slide" in front of the
    // text, and "after_slide" after the text.
    // For example:
    // document.write("<ul>");
    // document.write(s.get_all_text("<li>","\n"));
    // document.write("<\/ul>");
  
    all_text = "";
  
    // Loop through all the slides in the slideshow
    for (i=0; i < this.slides.length; i++) {
  
      slide = this.slides[i];
    
      if (slide.text) {
        all_text += before_slide + slide.text + after_slide;
      }
  
    }
  
    return(all_text);
  }


  //--------------------------------------------------
  this.display_text = function(text) {
    // Display the text for the current slide
  
    // If the "text" arg was not supplied (usually it isn't),
    // get the text from the slideshow
    if (!text) {
      text = this.slides[ this.current ].text;
    }
  
    // If a textarea has been specified,
    // then change the text displayed in it
    if (this.textarea && typeof this.textarea.value != 'undefined') {
      this.textarea.value = text;
    }

    // If a text id has been specified,
    // then change the contents of the HTML element
    if (this.textid) {

      r = this.getElementById(this.textid);
      if (!r) { return false; }
      if (typeof r.innerHTML == 'undefined') { return false; }

      // Update the text
      r.innerHTML = text;
    }
  }

 //--------------------------------------------------
  this.display_price = function(text) {
    // Display the price for the current slide
  
    // If the "text" arg was not supplied (usually it isn't),
    // get the text from the slideshow
    if (!text) {
      text = this.slides[ this.current ].price;
    }
  
    // If a textarea has been specified,
    // then change the text displayed in it
    if (this.textarea && typeof this.textarea.value != 'undefined') {
      this.textarea.value = text;
    }

    // If a text id has been specified,
    // then change the contents of the HTML element
    if (this.priceid) {

      r = this.getElementById(this.priceid);
      if (!r) { return false; }
      if (typeof r.innerHTML == 'undefined') { return false; }

      // Update the text
      r.innerHTML = text;
    }
  }
  
  //--------------------------------------------------
  this.hotlink = function() {
    // This method calls the hotlink() method for the current slide.
  
    this.slides[ this.current ].hotlink();
  }


  //--------------------------------------------------
  this.save_position = function(cookiename) {
    // Saves the position of the slideshow in a cookie,
    // so when you return to this page, the position in the slideshow
    // won't be lost.
  
    if (!cookiename) {
      cookiename = this.name + '_slideshow';
    }
  
    document.cookie = cookiename + '=' + this.current;
  }


  //--------------------------------------------------
  this.restore_position = function(cookiename) {
  // If you previously called slideshow_save_position(),
  // returns the slideshow to the previous state.
  
    //Get cookie code by Shelley Powers
  
    if (!cookiename) {
      cookiename = this.name + '_slideshow';
    }
  
    var search = cookiename + "=";
  
    if (document.cookie.length > 0) {
      offset = document.cookie.indexOf(search);
      // if cookie exists
      if (offset != -1) { 
        offset += search.length;
        // set index of beginning of value
        end = document.cookie.indexOf(";", offset);
        // set index of end of cookie value
        if (end == -1) end = document.cookie.length;
        this.current = parseInt(unescape(document.cookie.substring(offset, end)));
        }
     }
  }


  //--------------------------------------------------
  this.noscript = function() {
    // This method is not for use as part of your slideshow,
    // but you can call it to get a plain HTML version of the slideshow
    // images and text.
    // You should copy the HTML and put it within a NOSCRIPT element, to
    // give non-javascript browsers access to your slideshow information.
    // This also ensures that your slideshow text and images are indexed
    // by search engines.
  
    $html = "\n";
  
    // Loop through all the slides in the slideshow
    for (i=0; i < this.slides.length; i++) {
  
      slide = this.slides[i];
  
      $html += '<P>';
  
      if (slide.link) {
        $html += '<a href="' + slide.link + '">';
      }
  
      $html += '<img src="' + slide.src + '" ALT="slideshow image">';
  
      if (slide.link) {
        $html += "<\/a>";
      }
  
      if (slide.text) {
        $html += "<BR>\n" + slide.text;
      }
	  
      if (slide.price) {
        $html += "<BR>\n" + slide.price;
      }
	    
      $html += "<\/P>" + "\n\n";
    }
  
    // Make the HTML browser-safe
    $html = $html.replace(/\&/g, "&amp;" );
    $html = $html.replace(/</g, "&lt;" );
    $html = $html.replace(/>/g, "&gt;" );
  
    return('<pre>' + $html + '</pre>');
  }


  //==================================================
  // Private methods
  //==================================================

  //--------------------------------------------------
  this.loop = function() {
    // This method is for internal use only.
    // This method gets called automatically by a JavaScript timeout.
    // It advances to the next slide, then sets the next timeout.
    // If the next slide image has not completed loading yet,
    // then do not advance to the next slide yet.

    // Make sure the next slide image has finished loading
    if (this.current < this.slides.length - 1) {
      next_slide = this.slides[this.current + 1];
      if (next_slide.image.complete == null || next_slide.image.complete) {
        this.next();
      }
    } else { // we're at the last slide
      this.next();
    }
    
    // Keep playing the slideshow
    this.play( );
  }


  //--------------------------------------------------
  this.valid_image = function() {
    // Returns 1 if a valid image has been set for the slideshow
  
    if (!this.image)
    {
      return false;
    }
    else {
      return true;
    }
  }

  //--------------------------------------------------
  this.getElementById = function(element_id) {
    // This method returns the element corresponding to the id

    if (document.getElementById) {
      return document.getElementById(element_id);
    }
    else if (document.all) {
      return document.all[element_id];
    }
    else if (document.layers) {
      return document.layers[element_id];
    } else {
      return undefined;
    }
  }
  

  //==================================================
  // Deprecated methods
  // I don't recommend the use of the following methods,
  // but they are included for backward compatibility.
  // You can delete them if you don't need them.
  //==================================================

  //--------------------------------------------------
  this.set_image = function(imageobject) {
    // This method is deprecated; you should use
    // the following code instead:
    // s.image = document.images.myimagename;
    // s.update();

    if (!document.images)
      return;
    this.image = imageobject;
  }

  //--------------------------------------------------
  this.set_textarea = function(textareaobject) {
    // This method is deprecated; you should use
    // the following code instead:
    // s.textarea = document.form.textareaname;
    // s.update();

    this.textarea = textareaobject;
    this.display_text();
  }

  //--------------------------------------------------
  this.set_textid = function(textidstr) {
    // This method is deprecated; you should use
    // the following code instead:
    // s.textid = "mytextid";
    // s.update();

    this.textid = textidstr;
    this.display_text();
  }
  
   //--------------------------------------------------
  this.set_priceid = function(priceidstr) {
    // This method is deprecated; you should use
    // the following code instead:
    // s.textid = "mytextid";
    // s.update();

    this.priceid = priceidstr;
    this.display_price();
  }
}



SLIDES = new slideshow("SLIDES");
	
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98517343_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98517343&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98517343&bid=20&fe=1 ' title='Click to view property info'>56 LOGAN RD<br /> NEW CANAAN, CT 06840<br /><b> $2,850,000 </b><br />5 Beds - 5 Full | 1 Partial Baths</a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98511975_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98511975&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98511975&bid=20&fe=1 ' title='Click to view property info'>215 FARMS RD<br /> STAMFORD, CT 06903<br /><b> $2,300,000 </b><br />5 Beds - 5 Full | 1 Partial Baths</a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98525248_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98525248&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98525248&bid=20&fe=1 ' title='Click to view property info'>2 LIGHTHOUSE PT<br /> FAIRFIELD, CT 06824<br /><b> $2,199,000 </b><br />5 Beds - 4 Baths</a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98525617_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98525617&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98525617&bid=20&fe=1 ' title='Click to view property info'>STAMFORD, CT 06903<br /><b> $2,099,000 </b><br />5 Beds - 5 Full | 1 Partial Baths</a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98520903_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98520903&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98520903&bid=20&fe=1 ' title='Click to view property info'>76 QUARRY RD<br /> STAMFORD, CT 06903<br /><b> $1,995,000 </b><br />6 Beds - 5 Full | 2 Partial Baths</a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98525497_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98525497&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98525497&bid=20&fe=1 ' title='Click to view property info'>46 BIRD SONG LN<br /> STAMFORD, CT 06903<br /><b> $1,675,000 </b><br />5 Beds - 4 Full | 1 Partial Baths</a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98521835_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98521835&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98521835&bid=20&fe=1 ' title='Click to view property info'>43 VALLEY DR<br /> GREENWICH, CT 06831<br /><b> $1,595,000 </b><br />4 Beds - 3 Full | 2 Partial Baths</a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98525301_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98525301&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98525301&bid=20&fe=1 ' title='Click to view property info'>54 MALTBIE AVE<br /> STAMFORD, CT 06902<br /><b> $1,250,000 </b><br />4 Beds - 4 Full | 1 Partial Baths</a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98520811_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98520811&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98520811&bid=20&fe=1 ' title='Click to view property info'>181 TURN OF RIVER RD #5<br /> STAMFORD, CT 06905<br /><b> $1,249,000 </b><br />3 Beds - 3 Baths</a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98520818_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98520818&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98520818&bid=20&fe=1 ' title='Click to view property info'>181 TURN OF RIVER RD<br /> STAMFORD, CT 06905<br /><b> $1,249,000 </b><br />3 Beds - 3 Baths</a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98526263_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98526263&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98526263&bid=20&fe=1 ' title='Click to view property info'>61 KNOBLOCH LN<br /> STAMFORD, CT 06902<br /><b> $1,235,000 </b><br />5 Beds - 4 Full | 1 Partial Baths</a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98526097_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98526097&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98526097&bid=20&fe=1 ' title='Click to view property info'>82 ERSKINE RD<br /> STAMFORD, CT 06903<br /><b> $999,999 </b><br />5 Beds - 4 Baths</a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98515092_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98515092&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98515092&bid=20&fe=1 ' title='Click to view property info'>28 ANTLER LN<br /> WILTON, CT 06897<br /><b> $992,000 </b><br />3 Beds - 2 Full | 1 Partial Baths</a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98506676_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98506676&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98506676&bid=20&fe=1 ' title='Click to view property info'>61 GREENS CIR<br /> STAMFORD, CT 06903<br /><b> $898,900 </b><br />5 Beds - 3 Full | 2 Partial Baths</a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98522660_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98522660&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98522660&bid=20&fe=1 ' title='Click to view property info'>86 SHADY KNOLL DR<br /> STAMFORD, CT 06903<br /><b> $889,000 </b><br />4 Beds - 3 Full | 2 Partial Baths</a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98518397_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98518397&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98518397&bid=20&fe=1 ' title='Click to view property info'>108 SEASIDE AVE<br /> STAMFORD, CT 06902<br /><b> $875,000 </b><br />2 Beds - 1 Baths</a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98514657_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98514657&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98514657&bid=20&fe=1 ' title='Click to view property info'>69 CHESTNUT HILL RD<br /> STAMFORD, CT 06903<br /><b> $829,000 </b><br />5 Beds - 4 Baths</a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98524530_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98524530&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98524530&bid=20&fe=1 ' title='Click to view property info'>33 LIMEKILN RD<br /> REDDING, CT 06896<br /><b> $825,000 </b><br />3 Beds - 2 Full | 1 Partial Baths</a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98516792_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98516792&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98516792&bid=20&fe=1 ' title='Click to view property info'>88 BARNES RD<br /> STAMFORD, CT 06902<br /><b> $779,000 </b><br />3 Beds - 2 Full | 2 Partial Baths</a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98510470_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98510470&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98510470&bid=20&fe=1 ' title='Click to view property info'>208 SHELTER ROCK RD<br /> STAMFORD, CT 06903<br /><b> $759,000 </b><br />4 Beds - 3 Full | 1 Partial Baths</a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98519913_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98519913&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98519913&bid=20&fe=1 ' title='Click to view property info'>215 COURTLAND AVE<br /> STAMFORD, CT 06906<br /><b> $729,000 </b><br />5 Beds - 4 Full | 1 Partial Baths</a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98523807_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98523807&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98523807&bid=20&fe=1 ' title='Click to view property info'>1943 N LONG RIDGE RD<br /> STAMFORD, CT 06903<br /><b> $725,000 </b><br />4 Beds - 3 Full | 1 Partial Baths</a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98526190_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98526190&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98526190&bid=20&fe=1 ' title='Click to view property info'>303 ROCKY RAPIDS RD<br /> STAMFORD, CT 06903<br /><b> $710,000 </b><br />5 Beds - 3 Baths</a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98525574_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98525574&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98525574&bid=20&fe=1 ' title='Click to view property info'>36 SADDLE HILL RD<br /> STAMFORD, CT 06903<br /><b> $699,000 </b><br />4 Beds - 3 Baths</a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98526259_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98526259&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98526259&bid=20&fe=1 ' title='Click to view property info'>1834 SHIPPAN AVE<br /> STAMFORD, CT 06902<br /><b> $699,000 </b><br />3 Beds - 2 Baths</a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98522287_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98522287&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98522287&bid=20&fe=1 ' title='Click to view property info'>51 STAMFORD AVE<br /> STAMFORD, CT 06902<br /><b> $698,900 </b><br />4 Beds - 2 Baths</a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98520053_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98520053&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98520053&bid=20&fe=1 ' title='Click to view property info'>21 WESTCOTT RD<br /> STAMFORD, CT 06902<br /><b> $675,000 </b><br />3 Beds - 2 Full | 1 Partial Baths</a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98525381_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98525381&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98525381&bid=20&fe=1 ' title='Click to view property info'>24 VERPLANK AVE<br /> STAMFORD, CT 06902<br /><b> $649,000 </b><br />2 Beds - 1 Baths</a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98525495_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98525495&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98525495&bid=20&fe=1 ' title='Click to view property info'>46 BIRD SONG LN<br /> STAMFORD, CT 06903<br /><b> $636,000 </b><br />3 Beds - 2 Full | 1 Partial Baths</a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98513712_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98513712&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98513712&bid=20&fe=1 ' title='Click to view property info'>65 LONDON LN<br /> STAMFORD, CT 06902<br /><b> $629,000 </b><br />5 Beds - 2 Full | 1 Partial Baths</a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98519199_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98519199&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98519199&bid=20&fe=1 ' title='Click to view property info'>60 TUPPER DR<br /> STAMFORD, CT 06902<br /><b> $599,000 </b><br />3 Beds - 2 Full | 1 Partial Baths</a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98506387_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98506387&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98506387&bid=20&fe=1 ' title='Click to view property info'>STAMFORD, CT 06905<br /><b> $584,000 </b><br />3 Beds - 3 Baths</a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98511494_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98511494&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98511494&bid=20&fe=1 ' title='Click to view property info'>98 SOUTHFIELD AVE #201<br /> STAMFORD, CT 06902<br /><b> $549,000 </b><br />2 Beds - 2 Baths</a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98513433_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98513433&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98513433&bid=20&fe=1 ' title='Click to view property info'>35 AYRES DR<br /> STAMFORD, CT 06905<br /><b> $532,000 </b><br />4 Beds - 2 Baths</a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98494642_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98494642&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98494642&bid=20&fe=1 ' title='Click to view property info'>211 CEDAR HEIGHTS RD<br /> STAMFORD, CT 06905<br /><b> $529,000 </b><br />3 Beds - 1 Full | 1 Partial Baths</a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98516263_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98516263&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98516263&bid=20&fe=1 ' title='Click to view property info'>6 MANOR LN<br /> EASTON, CT 06612<br /><b> $529,000 </b><br />4 Beds - 2 Full | 1 Partial Baths</a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98514579_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98514579&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98514579&bid=20&fe=1 ' title='Click to view property info'>33 WILLOWBROOK PL<br /> STAMFORD, CT 06902<br /><b> $519,000 </b><br />4 Beds - 2 Full | 1 Partial Baths</a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98489884_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98489884&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98489884&bid=20&fe=1 ' title='Click to view property info'>10 RANSON ST<br /> STAMFORD, CT 06902<br /><b> $515,000 </b><br />3 Beds - 2 Full | 1 Partial Baths</a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98489885_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98489885&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98489885&bid=20&fe=1 ' title='Click to view property info'>0 RANSON ST<br /> STAMFORD, CT 06902<br /><b> $515,000 </b><br />3 Beds - 2 Full | 1 Partial Baths</a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98489879_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98489879&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98489879&bid=20&fe=1 ' title='Click to view property info'>539 COVE RD<br /> STAMFORD, CT 06902<br /><b> $499,900 </b><br />3 Beds - 2 Full | 1 Partial Baths</a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98489882_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98489882&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98489882&bid=20&fe=1 ' title='Click to view property info'>539 COVE RD<br /> STAMFORD, CT 06902<br /><b> $499,900 </b><br />3 Beds - 2 Full | 1 Partial Baths</a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98517160_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98517160&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98517160&bid=20&fe=1 ' title='Click to view property info'>80 ALPINE ST<br /> STAMFORD, CT 06905<br /><b> $499,000 </b><br />3 Beds - 2 Baths</a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98520927_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98520927&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98520927&bid=20&fe=1 ' title='Click to view property info'>7 CALF PASTURE BEACH RD<br /> NORWALK, CT 06855<br /><b> $499,000 </b><br />4 Beds - 2 Baths</a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98524416_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98524416&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98524416&bid=20&fe=1 ' title='Click to view property info'>624 HOPE (D) ST<br /> STAMFORD, CT 06907<br /><b> $499,000 </b><br />3 Beds - 2 Full | 1 Partial Baths</a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98524421_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98524421&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98524421&bid=20&fe=1 ' title='Click to view property info'>624 HOPE ST #D<br /> STAMFORD, CT 06907<br /><b> $499,000 </b><br />3 Beds - 2 Full | 1 Partial Baths</a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98513762_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98513762&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98513762&bid=20&fe=1 ' title='Click to view property info'>45 ROLLING RIDGE RD<br /> ORANGE, CT 06477<br /><b> $489,000 </b><br />4 Beds - 3 Baths</a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98515270_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98515270&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98515270&bid=20&fe=1 ' title='Click to view property info'>162 COLONIAL RD #9<br /> STAMFORD, CT 06906<br /><b> $485,000 </b><br />2 Beds - 2 Full | 1 Partial Baths</a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98505944_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98505944&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98505944&bid=20&fe=1 ' title='Click to view property info'>49 GLENDALE CIR<br /> STAMFORD, CT 06906<br /><b> $483,276 </b><br />3 Beds - 1 Full | 1 Partial Baths</a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98518352_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98518352&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98518352&bid=20&fe=1 ' title='Click to view property info'>107 WOOD RIDGE DR<br /> STAMFORD, CT 06905<br /><b> $479,000 </b><br />3 Beds - 2 Full | 1 Partial Baths</a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98523813_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98523813&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98523813&bid=20&fe=1 ' title='Click to view property info'>11 DUKE DR<br /> STAMFORD, CT 06905<br /><b> $474,900 </b><br />3 Beds - 2 Baths</a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98513370_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98513370&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98513370&bid=20&fe=1 ' title='Click to view property info'>25 ADAMS AVE #411<br /> STAMFORD, CT 06902<br /><b> $469,000 </b><br />3 Beds - 2 Baths</a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98521508_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98521508&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98521508&bid=20&fe=1 ' title='Click to view property info'>48 BOUTON (EAST) ST<br /> STAMFORD, CT 06907<br /><b> $469,000 </b><br />3 Beds - 2 Baths</a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98520327_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98520327&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98520327&bid=20&fe=1 ' title='Click to view property info'>1189 STILLWATER RD<br /> STAMFORD, CT 06902<br /><b> $449,999 </b><br />4 Beds - 2 Baths</a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98513723_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98513723&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98513723&bid=20&fe=1 ' title='Click to view property info'>25 FOREST ST #10K<br /> STAMFORD, CT 06901<br /><b> $449,000 </b><br />2 Beds - 2 Baths</a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98522544_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98522544&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98522544&bid=20&fe=1 ' title='Click to view property info'>1515 SUMMER ST #501<br /> STAMFORD, CT 06905<br /><b> $449,000 </b><br />2 Beds - 2 Baths</a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98524687_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98524687&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98524687&bid=20&fe=1 ' title='Click to view property info'>106 GREGORY BLVD<br /> NORWALK, CT 06855<br /><b> $449,000 </b><br />3 Beds - 1 Full | 1 Partial Baths</a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98520030_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98520030&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98520030&bid=20&fe=1 ' title='Click to view property info'>292 MOUNTAIN RD<br /> WILTON, CT 06897<br /><b> $419,900 </b><br />2 Beds - 1 Baths</a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98496771_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98496771&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98496771&bid=20&fe=1 ' title='Click to view property info'>16 VALLEY VIEW RD<br /> NORWALK, CT 06851<br /><b> $419,000 </b><br />3 Beds - 2 Baths</a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98515773_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98515773&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98515773&bid=20&fe=1 ' title='Click to view property info'>34 OLMSTEAD PL<br /> NORWALK, CT 06855<br /><b> $415,000 </b><br />4 Beds - 2 Baths</a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98504811_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98504811&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98504811&bid=20&fe=1 ' title='Click to view property info'>30 UPLAND RD<br /> STAMFORD, CT 06906<br /><b> $399,725 </b><br />3 Beds - 1 Full | 1 Partial Baths</a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98502630_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98502630&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98502630&bid=20&fe=1 ' title='Click to view property info'>19 MIDLAND AVE<br /> STAMFORD, CT 06906<br /><b> $399,000 </b><br />3 Beds - 1 Baths</a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98503762_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98503762&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98503762&bid=20&fe=1 ' title='Click to view property info'>56 BURWOOD AVE<br /> STAMFORD, CT 06902<br /><b> $399,000 </b><br />3 Beds - 2 Baths</a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98514767_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98514767&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98514767&bid=20&fe=1 ' title='Click to view property info'>143 HOYT ST #5L<br /> STAMFORD, CT 06905<br /><b> $399,000 </b><br />2 Beds - 2 Baths</a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98521503_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98521503&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98521503&bid=20&fe=1 ' title='Click to view property info'>64 SCOFIELD AVE<br /> STAMFORD, CT 06906<br /><b> $389,000 </b><br />3 Beds - 2 Baths</a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98525770_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98525770&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98525770&bid=20&fe=1 ' title='Click to view property info'>35 W BROAD ST #213<br /> STAMFORD, CT 06902<br /><b> $387,500 </b><br />2 Beds - 2 Baths</a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98519121_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98519121&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98519121&bid=20&fe=1 ' title='Click to view property info'>23 ADLEY RD<br /> FAIRFIELD, CT 06825<br /><b> $379,999 </b><br />3 Beds - 1 Baths</a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98503637_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98503637&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98503637&bid=20&fe=1 ' title='Click to view property info'>105 HARBOR DR #140<br /> STAMFORD, CT 06902<br /><b> $379,900 </b><br />2 Beds - 2 Full | 1 Partial Baths</a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98525156_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98525156&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98525156&bid=20&fe=1 ' title='Click to view property info'>229 SUN DANCE RD<br /> STAMFORD, CT 06905<br /><b> $374,900 </b><br />3 Beds - 1 Baths</a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98523826_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98523826&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98523826&bid=20&fe=1 ' title='Click to view property info'>19 WOODWAY RD #16<br /> STAMFORD, CT 06907<br /><b> $368,000 </b><br />2 Beds - 2 Full | 2 Partial Baths</a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98525133_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98525133&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98525133&bid=20&fe=1 ' title='Click to view property info'>142 ALTON RD<br /> STAMFORD, CT 06906<br /><b> $359,000 </b><br />3 Beds - 1 Full | 1 Partial Baths</a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98513691_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98513691&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98513691&bid=20&fe=1 ' title='Click to view property info'>139 HOUSTON TER<br /> STAMFORD, CT 06902<br /><b> $350,000 </b><br />3 Beds - 2 Baths</a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98512913_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98512913&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98512913&bid=20&fe=1 ' title='Click to view property info'>43 PELLOM PL<br /> STAMFORD, CT 06905<br /><b> $339,000 </b><br />3 Beds - 1 Full | 1 Partial Baths</a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98526248_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98526248&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98526248&bid=20&fe=1 ' title='Click to view property info'>85 RIVERSIDE AVE #E8<br /> STAMFORD, CT 06905<br /><b> $339,000 </b><br />2 Beds - 1 Baths</a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98525209_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98525209&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98525209&bid=20&fe=1 ' title='Click to view property info'>100 MAPLE TREE AVE #9<br /> STAMFORD, CT 06906<br /><b> $328,000 </b><br />3 Beds - 1 Full | 1 Partial Baths</a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98522597_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98522597&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98522597&bid=20&fe=1 ' title='Click to view property info'>25 VAN BUSKIRK AVE<br /> STAMFORD, CT 06902<br /><b> $319,000 </b><br />3 Beds - 1 Full | 1 Partial Baths</a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98515283_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98515283&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98515283&bid=20&fe=1 ' title='Click to view property info'>668 GLENBROOK RD #33<br /> STAMFORD, CT 06906<br /><b> $305,000 </b><br />1 Beds - 1 Full | 1 Partial Baths</a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98516680_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98516680&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98516680&bid=20&fe=1 ' title='Click to view property info'>49 BROWN AVE<br /> STAMFORD, CT 06902<br /><b> $299,999 </b><br />3 Beds - 2 Baths</a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98520322_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98520322&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98520322&bid=20&fe=1 ' title='Click to view property info'>80 WILSON AVE<br /> TRUMBULL, CT 06611<br /><b> $299,900 </b><br />4 Beds - 2 Full | 1 Partial Baths</a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98523976_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98523976&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98523976&bid=20&fe=1 ' title='Click to view property info'>44 STRAWBERRY HILL AVE #2L<br /> STAMFORD, CT 06902<br /><b> $284,900 </b><br />2 Beds - 2 Baths</a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98524619_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98524619&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98524619&bid=20&fe=1 ' title='Click to view property info'>143 HOYT ST #3G<br /> STAMFORD, CT 06905<br /><b> $283,000 </b><br />1 Beds - 1 Baths</a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98510209_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98510209&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98510209&bid=20&fe=1 ' title='Click to view property info'>180 COLONIAL RD #A3<br /> STAMFORD, CT 06906<br /><b> $279,000 </b><br />2 Beds - 1 Baths</a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98525151_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98525151&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98525151&bid=20&fe=1 ' title='Click to view property info'>511 W MAIN ST #10<br /> STAMFORD, CT 06902<br /><b> $279,000 </b><br />2 Beds - 1 Full | 1 Partial Baths</a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98509028_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98509028&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98509028&bid=20&fe=1 ' title='Click to view property info'>185 CULLODEN RD<br /> STAMFORD, CT 06902<br /><b> $269,900 </b><br />3 Beds - 1 Baths</a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98526284_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98526284&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98526284&bid=20&fe=1 ' title='Click to view property info'>151 COURTLAND AVE #1H<br /> STAMFORD, CT 06902<br /><b> $269,000 </b><br />2 Beds - 1 Baths</a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98514602_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98514602&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98514602&bid=20&fe=1 ' title='Click to view property info'>1080 BEDFORD ST #3B<br /> STAMFORD, CT 06905<br /><b> $264,000 </b><br />2 Beds - 1 Baths</a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98525334_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98525334&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98525334&bid=20&fe=1 ' title='Click to view property info'>121 MIDLAND AVE<br /> STAMFORD, CT 06906<br /><b> $239,900 </b><br />2 Beds - 1 Baths</a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98510709_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98510709&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98510709&bid=20&fe=1 ' title='Click to view property info'>1197 HOPE ST #5<br /> STAMFORD, CT 06907<br /><b> $225,000 </b><br />2 Beds - 1 Full | 1 Partial Baths</a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98524146_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98524146&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98524146&bid=20&fe=1 ' title='Click to view property info'>71 STRAWBERRY HILL AVE #1019<br /> STAMFORD, CT 06902<br /><b> $220,000 </b><br />2 Beds - 1 Baths</a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98524977_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98524977&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98524977&bid=20&fe=1 ' title='Click to view property info'>244 SYLVAN KNOLL<br /> STAMFORD, CT 06902<br /><b> $219,900 </b><br />2 Beds - 1 Full | 1 Partial Baths</a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98520121_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98520121&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98520121&bid=20&fe=1 ' title='Click to view property info'>51 SCHUYLER AVE #2B<br /> STAMFORD, CT 06902<br /><b> $216,000 </b><br />1 Beds - 1 Baths</a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98496722_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98496722&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98496722&bid=20&fe=1 ' title='Click to view property info'>64 SEASIDE AVE #C<br /> STAMFORD, CT 06902<br /><b> $199,000 </b><br />2 Beds - 1 Baths</a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98514589_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98514589&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98514589&bid=20&fe=1 ' title='Click to view property info'>59 COURTLAND AVE #1G<br /> STAMFORD, CT 06902<br /><b> $199,000 </b><br />2 Beds - 2 Baths</a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98524206_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98524206&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98524206&bid=20&fe=1 ' title='Click to view property info'>149 SYLVAN KNOLL RD<br /> STAMFORD, CT 06902<br /><b> $178,000 </b><br />2 Beds - 1 Baths</a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98513686_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98513686&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98513686&bid=20&fe=1 ' title='Click to view property info'>227 SYLVAN KNOLL RD<br /> STAMFORD, CT 06904<br /><b> $159,000 </b><br />2 Beds - 1 Baths</a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98510753_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98510753&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98510753&bid=20&fe=1 ' title='Click to view property info'>444 BEDFORD ST #3J<br /> STAMFORD, CT 06901<br /><b> $140,000 </b><br />1 Beds - 1 Baths</a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98525188_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98525188&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98525188&bid=20&fe=1 ' title='Click to view property info'>3 FOREST GLEN CIR #4<br /> MIDDLETOWN, CT 06457<br /><b> $139,000 </b><br />2 Beds - 2 Baths</a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98497072_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98497072&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98497072&bid=20&fe=1 ' title='Click to view property info'>41 WOLFPIT AVE #12 I<br /> NORWALK, CT 06851<br /><b> $125,000 </b><br />2 Beds - 1 Baths</a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98524232_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98524232&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98524232&bid=20&fe=1 ' title='Click to view property info'>700 SUMMER ST #4D<br /> STAMFORD, CT 06901<br /><b> $124,900 </b><br />1 Beds - 1 Baths</a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98484979_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98484979&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98484979&bid=20&fe=1 ' title='Click to view property info'>41 WOLFPIT AVE #6A<br /> NORWALK, CT 06851<br /><b> $105,000 </b><br />2 Beds - 1 Baths</a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98523485_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98523485&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98523485&bid=20&fe=1 ' title='Click to view property info'>388 COURTLAND AVE #3A<br /> STAMFORD, CT 06906<br /><b> $79,000 </b><br /> - 1 Baths</a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98503534_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98503534&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98503534&bid=20&fe=1 ' title='Click to view property info'>37 OLD WELL RD<br /> STAMFORD, CT 06907<br /><b> $1,275,000 </b><br /></a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98526102_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98526102&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98526102&bid=20&fe=1 ' title='Click to view property info'>82 ERSKINE RD<br /> STAMFORD, CT 06903<br /><b> $999,999 </b><br /></a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98518398_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98518398&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98518398&bid=20&fe=1 ' title='Click to view property info'>108 SEASIDE AVE<br /> STAMFORD, CT 06902<br /><b> $875,000 </b><br /></a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98518116_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98518116&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98518116&bid=20&fe=1 ' title='Click to view property info'>114 SEASIDE AVE<br /> STAMFORD, CT 06902<br /><b> $699,000 </b><br /></a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98491148_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98491148&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98491148&bid=20&fe=1 ' title='Click to view property info'>CROFTS LN<br /> STAMFORD, CT 06903<br /><b> $249,000 </b><br /></a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98428261_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98428261&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98428261&bid=20&fe=1 ' title='Click to view property info'>STAMFORD, CT 06904<br /><b> $99,000 </b><br /></a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98525432_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98525432&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98525432&bid=20&fe=1 ' title='Click to view property info'>78 SEASIDE AVE<br /> STAMFORD, CT 06902<br /><b> $740,000 </b><br /></a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98518100_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98518100&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98518100&bid=20&fe=1 ' title='Click to view property info'>114 SEASIDE AVE<br /> STAMFORD, CT 06902<br /><b> $699,000 </b><br /></a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98518245_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98518245&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98518245&bid=20&fe=1 ' title='Click to view property info'>268 SEASIDE AVE<br /> STAMFORD, CT 06902<br /><b> $649,000 </b><br /></a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98513523_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98513523&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98513523&bid=20&fe=1 ' title='Click to view property info'>213 HENRY ST<br /> STAMFORD, CT 06902<br /><b> $479,000 </b><br /></a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98525120_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98525120&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98525120&bid=20&fe=1 ' title='Click to view property info'>31 CAROLINA RD<br /> STAMFORD, CT 06902<br /><b> $325,000 </b><br /></a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98499036_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98499036&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98499036&bid=20&fe=1 ' title='Click to view property info'>161 DANS HWY<br /> NEW CANAAN, CT 06840<br /><b> $12,000 </b><br />5 Beds - 6 Full | 2 Partial Baths</a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98523684_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98523684&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98523684&bid=20&fe=1 ' title='Click to view property info'>1943 N LONG RIDGE RD<br /> STAMFORD, CT 06903<br /><b> $ 3,900 </b><br />4 Beds - 3 Full | 1 Partial Baths</a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98523674_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98523674&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98523674&bid=20&fe=1 ' title='Click to view property info'>33 RIVER RIDGE CT<br /> STAMFORD, CT 06902<br /><b> $ 3,795 </b><br />3 Beds - 3 Full | 1 Partial Baths</a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98519739_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98519739&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98519739&bid=20&fe=1 ' title='Click to view property info'>43 RALSEY ROAD SOUTH<br /> STAMFORD, CT 06902<br /><b> $ 3,700 </b><br />3 Beds - 2 Full | 1 Partial Baths</a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98514480_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98514480&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98514480&bid=20&fe=1 ' title='Click to view property info'>883 STILLWATER RD<br /> STAMFORD, CT 06902<br /><b> $ 3,400 </b><br />3 Beds - 2 Baths</a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98525688_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98525688&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98525688&bid=20&fe=1 ' title='Click to view property info'>98 DOGWOOD DR<br /> EASTON, CT 06612<br /><b> $ 3,100 </b><br />3 Beds - 2 Full | 1 Partial Baths</a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98520622_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98520622&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98520622&bid=20&fe=1 ' title='Click to view property info'>789 RIVERBANK RD<br /> STAMFORD, CT 06903<br /><b> $ 3,000 </b><br />5 Beds - 3 Full | 1 Partial Baths</a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98526178_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98526178&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98526178&bid=20&fe=1 ' title='Click to view property info'>22 OLD LANTERN RD<br /> NORWALK, CT 06851<br /><b> $ 2,900 </b><br />5 Beds - 2 Full | 1 Partial Baths</a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98524340_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98524340&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98524340&bid=20&fe=1 ' title='Click to view property info'>1 STRAWBERRY HILL AVE #11B<br /> STAMFORD, CT 06902<br /><b> $ 2,800 </b><br />3 Beds - 2 Baths</a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98524197_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98524197&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98524197&bid=20&fe=1 ' title='Click to view property info'>25 FOREST ST #10K<br /> STAMFORD, CT 06901<br /><b> $ 2,700 </b><br />2 Beds - 2 Baths</a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98520188_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98520188&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98520188&bid=20&fe=1 ' title='Click to view property info'>274 W BROAD ST<br /> STAMFORD, CT 06902<br /><b> $ 2,500 </b><br />3 Beds - 1 Full | 1 Partial Baths</a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98519668_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98519668&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98519668&bid=20&fe=1 ' title='Click to view property info'>105 HARBOR DR #140<br /> STAMFORD, CT 06902<br /><b> $ 2,400 </b><br />2 Beds - 2 Full | 1 Partial Baths</a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98525649_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98525649&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98525649&bid=20&fe=1 ' title='Click to view property info'>15 SUMMIT PL<br /> STAMFORD, CT 06906<br /><b> $ 2,300 </b><br />1 Beds - 1 Baths</a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98519318_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98519318&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98519318&bid=20&fe=1 ' title='Click to view property info'>71-10 COURTLAND AVE<br /> STAMFORD, CT 06902<br /><b> $ 2,200 </b><br />3 Beds - 2 Baths</a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98525203_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98525203&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98525203&bid=20&fe=1 ' title='Click to view property info'>26 OGDEN RD<br /> STAMFORD, CT 06905<br /><b> $ 2,100 </b><br />2 Beds - 2 Baths</a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98518951_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98518951&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98518951&bid=20&fe=1 ' title='Click to view property info'>14 INGALL ST #B5<br /> STAMFORD, CT 06902<br /><b> $ 1,975 </b><br />2 Beds - 2 Baths</a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98523178_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98523178&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98523178&bid=20&fe=1 ' title='Click to view property info'>10 GLENDENNING ST #LEFT<br /> NORWALK, CT 06851<br /><b> $ 1,850 </b><br />3 Beds - 1 Baths</a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98522907_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98522907&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98522907&bid=20&fe=1 ' title='Click to view property info'>44 STRAWBERRY HILL AVE #5D<br /> STAMFORD, CT 06902<br /><b> $ 1,700 </b><br />1 Beds - 1 Baths</a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98525762_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98525762&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98525762&bid=20&fe=1 ' title='Click to view property info'>141 GROVE STREET ST #F<br /> STAMFORD, CT 06901<br /><b> $ 1,700 </b><br />2 Beds - 2 Baths</a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98523205_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98523205&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98523205&bid=20&fe=1 ' title='Click to view property info'>41 WOLFPIT AVE #6A<br /> NORWALK, CT 06851<br /><b> $ 1,600 </b><br />2 Beds - 1 Baths</a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98524982_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98524982&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98524982&bid=20&fe=1 ' title='Click to view property info'>32 PULASKI ST<br /> STAMFORD, CT 06902<br /><b> $ 1,595 </b><br />3 Beds - 1 Baths</a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98525127_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98525127&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98525127&bid=20&fe=1 ' title='Click to view property info'>75 ELAINE DR<br /> STAMFORD, CT 06902<br /><b> $ 1,400 </b><br />1 Beds - 1 Baths</a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98525111_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98525111&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98525111&bid=20&fe=1 ' title='Click to view property info'>86 FREDERICK ST #2<br /> STAMFORD, CT 06902<br /><b> $ 1,350 </b><br />2 Beds - 1 Baths</a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98525112_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98525112&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98525112&bid=20&fe=1 ' title='Click to view property info'>86 FREDERICK ST #1<br /> STAMFORD, CT 06902<br /><b> $ 1,350 </b><br />2 Beds - 1 Baths</a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98523599_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98523599&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98523599&bid=20&fe=1 ' title='Click to view property info'>140 GROVE ST #4H<br /> STAMFORD, CT 06901<br /><b> $ 1,299 </b><br />1 Beds - 1 Baths</a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98523207_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98523207&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98523207&bid=20&fe=1 ' title='Click to view property info'>20 GLENWOOD AVE #2<br /> NORWALK, CT 06854<br /><b> $ 1,175 </b><br />1 Beds - 1 Baths</a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98525779_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98525779&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98525779&bid=20&fe=1 ' title='Click to view property info'>445 HOPE ST #1<br /> STAMFORD, CT 06906<br /><b> $  990 </b><br /> - 1 Baths</a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CTCMLS/main/0/98523992_0.jpg";
    
    s.link = "http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98523992&bid=20&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://stamfordarearealestate.idxre.com/idx/detail.cfm?cid=36345&pid=98523992&bid=20&fe=1 ' title='Click to view property info'>811 ATLANTIC ST #BSMT<br /> STAMFORD, CT 06902<br /><b> $  950 </b><br />2 Beds - 1 Baths</a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    function MM_swapImgRestore() { //v3.0
      var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
    }
    
    function MM_preloadImages() { //v3.0
      var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
        var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
        if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
    }
    
    function MM_findObj(n, d) { //v4.01
      var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
        d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
      if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
      for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
      if(!x && d.getElementById) x=d.getElementById(n); return x;
    }
    
    function MM_swapImage() { //v3.0
      var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
       if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
    }
    
    // Create DOM element to contain slide show
    var slideShowDiv = document.createElement("div");
    slideShowDiv.setAttribute('id','ihf_featured_slide_show_div');
    var count = document.getElementsByTagName('*').length;
    var currentElement = document.getElementsByTagName('*')[count - 1];
    currentElement.parentNode.insertBefore(slideShowDiv,currentElement);
  
    // If we're using Prototype, load the slide show on document / window load
    try
    {
      // Display images on DOM load
      document.observe('dom:loaded', function(event)
      {
        try
        {
          if ( !Prototype.Browser.IE )
          {
            //alert('are we here non-IE?');
         
            var txt = '<table cellspacing="0" cellpadding="5" align="center" border="0">' +
                      ' <tr>' +
                      '   <td valign="top" align="center">' +
                      '     <table class="featuredPropertyPic" cellspacing="0" cellpadding="0" border="0">' +
                      '       <tr>' +
                      '         <td><a id="SLIDESLINK" href="javascript:SLIDES.hotlink()" title="Click to view property info"><img name="SLIDESIMG" src="images/layout/clear.gif" class="photo" border="0" width="170" height="130" alt="slideshow image"></a>' +
                      '         </td>' +
                      '       </tr>' +
                      '     </table>' +
                      '   </td>' +
                      ' </tr>' +
                      ' <tr>' +
                      '   <td valign="top" align="center"><NOBR><div id="SLIDESTEXT"></div></NOBR>&nbsp;&nbsp;' +
                      '   </td>' +
                      ' </tr>' +
                      '</table>';
            
            $('ihf_featured_slide_show_div').update(txt);
             
            SLIDES.goto_slide(0);
      
            if (document.images)
            {
              SLIDES.set_image(document.images.SLIDESIMG);
              SLIDES.set_textid("SLIDESTEXT"); // optional
              SLIDES.set_priceid("SLIDESPRICE");
              SLIDES.update();
              SLIDES.play(); //optional
            }
          }
        }
        catch(e)
        {
        }
      });
      
      // Event Handling for Browser-dependant events (IE versus the world!)
      Event.observe(window, 'load', function()
      {
        try
        {
          if ( Prototype.Browser.IE )
          {
            //alert('Are we here IE?');
    
            var txt = '<table cellspacing="0" cellpadding="5" align="center" border="0">' +
                      ' <tr>' +
                      '   <td valign="top" align="center">' +
                      '     <table class="featuredPropertyPic" cellspacing="0" cellpadding="0" border="0">' +
                      '       <tr>' +
                      '         <td><a id="SLIDESLINK" href="javascript:SLIDES.hotlink()" title="Click to view property info"><img name="SLIDESIMG" src="images/layout/clear.gif" class="photo" border="0" width="170" height="130" alt="slideshow image"></a>' +
                      '         </td>' +
                      '       </tr>' +
                      '     </table>' +
                      '   </td>' +
                      ' </tr>' +
                      ' <tr>' +
                      '   <td valign="top" align="center"><NOBR><div id="SLIDESTEXT"></div></NOBR>&nbsp;&nbsp;' +
                      '   </td>' +
                      ' </tr>' +
                      '</table>';
            
            $('ihf_featured_slide_show_div').update(txt);
             
            SLIDES.goto_slide(0);
      
            if (document.images)
            {
              SLIDES.set_image(document.images.SLIDESIMG);
              SLIDES.set_textid("SLIDESTEXT"); // optional
              SLIDES.set_priceid("SLIDESPRICE");
              SLIDES.update();
              SLIDES.play(); //optional
            }
          }
        }
        catch(e)
        {
        }
      });
      
    }
    catch(e)
    {
      // Display listings using legacy 6.0 code
      document.write('<table cellspacing="0" cellpadding="5" align="center" border="0">');
      document.write(' <tr>');
      document.write('   <td valign="top" align="center">');
      document.write('     <table class="featuredPropertyPic" cellspacing="0" cellpadding="0" border="0">');
      document.write('        <tr>');
      document.write('          <td><a id="SLIDESLINK" href="javascript:SLIDES.hotlink()" title="Click to view property info"><img name="SLIDESIMG" src="images/layout/clear.gif" class="photo" border="0" width="170" height="130" alt="slideshow image"></a>');
      document.write('          </td>');
      document.write('        </tr>');
      document.write('      </table>');
      document.write('    </td>');
      document.write('  </tr>');
      document.write('  <tr>');
      document.write('    <td valign="top" align="center"><NOBR><div id="SLIDESTEXT"></div></NOBR>&nbsp;&nbsp;');
      document.write('    </td>');
      document.write('  </tr>');
      document.write('</table>');
      
      SLIDES.goto_slide(0)
      
      if (document.images)
      {
        SLIDES.set_image(document.images.SLIDESIMG);
        SLIDES.set_textid("SLIDESTEXT"); // optional
        SLIDES.set_priceid("SLIDESPRICE");
        SLIDES.update();
        SLIDES.play(); //optional
    
      }
      
    }
	
