/*==================================================*
 $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/CACARETS/main/0/P753744_0.jpg";
    
    s.link = "http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P753744&bid=177&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P753744&bid=177&fe=1 ' title='Click to view property info'>110 SOUTH BELLEZA LANE<br /> ANAHEIM HILLS, CA 92807<br /><b> $1,400,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/CACARETS/main/0/P785710_0.jpg";
    
    s.link = "http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P785710&bid=177&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P785710&bid=177&fe=1 ' title='Click to view property info'>21645 WATERFORD DRIVE<br /> YORBA LINDA, CA 92887<br /><b> $1,250,000 </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/CACARETS/main/0/P802932_0.jpg";
    
    s.link = "http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P802932&bid=177&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P802932&bid=177&fe=1 ' title='Click to view property info'>59 SANCTUARY<br /> IRVINE, CA 92620<br /><b> $1,050,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/CACARETS/main/0/P801207_0.jpg";
    
    s.link = "http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P801207&bid=177&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P801207&bid=177&fe=1 ' title='Click to view property info'>4058 HOOSIER LAWN WAY<br /> YORBA LINDA, CA 92886<br /><b> $870,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/CACARETS/main/0/P806180_0.jpg";
    
    s.link = "http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P806180&bid=177&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P806180&bid=177&fe=1 ' title='Click to view property info'>2235 EVANS STREET<br /> FULLERTON, CA 92833<br /><b> $845,000 </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/CACARETS/main/0/P797171_0.jpg";
    
    s.link = "http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P797171&bid=177&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P797171&bid=177&fe=1 ' title='Click to view property info'>18632 OAKLAWN LANE<br /> YORBA LINDA, CA 92886<br /><b> $825,000 </b><br />4 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/CACARETS/main/0/P805896_0.jpg";
    
    s.link = "http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P805896&bid=177&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P805896&bid=177&fe=1 ' title='Click to view property info'>2115 NORTH MOODY AVENUE<br /> FULLERTON, CA 92831<br /><b> $795,000 </b><br />4 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/CACARETS/main/0/P809886_0.jpg";
    
    s.link = "http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P809886&bid=177&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P809886&bid=177&fe=1 ' title='Click to view property info'>2497 STONER AVENUE<br /> LOS ANGELES, CA 90064<br /><b> $790,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/CACARETS/main/0/P808502_0.jpg";
    
    s.link = "http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P808502&bid=177&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P808502&bid=177&fe=1 ' title='Click to view property info'>20356 VIA MARWAH<br /> YORBA LINDA, CA 92886<br /><b> $774,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/CACARETS/main/0/P805457_0.jpg";
    
    s.link = "http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P805457&bid=177&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P805457&bid=177&fe=1 ' title='Click to view property info'>3917 NIETO PLACE<br /> FULLERTON, CA 92835<br /><b> $769,000 </b><br />5 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/CACARETS/main/0/P787560_0.jpg";
    
    s.link = "http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P787560&bid=177&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P787560&bid=177&fe=1 ' title='Click to view property info'>1310 ARMACOST AVENUE #102<br /> LOS ANGELES, CA 90025<br /><b> $685,000 </b><br />3 Beds - 1 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/CACARETS/main/0/P805389_0.jpg";
    
    s.link = "http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P805389&bid=177&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P805389&bid=177&fe=1 ' title='Click to view property info'>505 GEORGETOWN LANE<br /> PLACENTIA, CA 92870<br /><b> $650,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/CACARETS/main/0/P798946_0.jpg";
    
    s.link = "http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P798946&bid=177&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P798946&bid=177&fe=1 ' title='Click to view property info'>231 SOUTH SUMMERTREE ROAD<br /> ANAHEIM HILLS, CA 92807<br /><b> $649,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/CACARETS/main/0/P785366_0.jpg";
    
    s.link = "http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P785366&bid=177&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P785366&bid=177&fe=1 ' title='Click to view property info'>21691 DIRIGO CIRCLE<br /> HUNTINGTON BEACH, CA 92646<br /><b> $629,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/CACARETS/main/0/P797629_0.jpg";
    
    s.link = "http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P797629&bid=177&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P797629&bid=177&fe=1 ' title='Click to view property info'>55573 PINEHURST<br /> LA QUINTA, CA 92253<br /><b> $585,000 </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/CACARETS/main/0/P804802_0.jpg";
    
    s.link = "http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P804802&bid=177&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P804802&bid=177&fe=1 ' title='Click to view property info'>1091 CANYON VIEW PLACE<br /> NORCO, CA 92860<br /><b> $584,900 </b><br />6 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/CACARETS/main/0/P810138_0.jpg";
    
    s.link = "http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P810138&bid=177&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P810138&bid=177&fe=1 ' title='Click to view property info'>5875 EAST CAMINO MANZANO<br /> ANAHEIM HILLS, CA 92807<br /><b> $580,000 </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/CACARETS/main/0/P802050_0.jpg";
    
    s.link = "http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P802050&bid=177&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P802050&bid=177&fe=1 ' title='Click to view property info'>404 MAPLE AVENUE<br /> BREA, CA 92821<br /><b> $559,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/CACARETS/main/0/P805678_0.jpg";
    
    s.link = "http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P805678&bid=177&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P805678&bid=177&fe=1 ' title='Click to view property info'>2236 SUMMITVIEW DRIVE<br /> FULLERTON, CA 92833<br /><b> $529,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/CACARETS/main/0/P782099_0.jpg";
    
    s.link = "http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P782099&bid=177&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P782099&bid=177&fe=1 ' title='Click to view property info'>21491 CORALITA<br /> LAKE FOREST, CA 92630<br /><b> $509,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/CACARETS/main/0/P745681_0.jpg";
    
    s.link = "http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P745681&bid=177&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P745681&bid=177&fe=1 ' title='Click to view property info'>2324 MARWICK AVENUE<br /> LONG BEACH, CA 90815<br /><b> $499,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/CACARETS/main/0/P777765_0.jpg";
    
    s.link = "http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P777765&bid=177&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P777765&bid=177&fe=1 ' title='Click to view property info'>3130 EAST ELM STREET<br /> BREA, CA 92823<br /><b> $492,500 </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/CACARETS/main/0/P770563_0.jpg";
    
    s.link = "http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P770563&bid=177&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P770563&bid=177&fe=1 ' title='Click to view property info'>630 NORTH WEST STREET<br /> ANAHEIM, CA 92801<br /><b> $490,000 </b><br />5 Beds</a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CACARETS/main/0/P804995_0.jpg";
    
    s.link = "http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P804995&bid=177&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P804995&bid=177&fe=1 ' title='Click to view property info'>145 SOUTH ANNED DRIVE<br /> PLACENTIA, CA 92870<br /><b> $487,800 </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/CACARETS/main/0/P809772_0.jpg";
    
    s.link = "http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P809772&bid=177&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P809772&bid=177&fe=1 ' title='Click to view property info'>554 CANDLEWOOD STREET<br /> BREA, CA 92821<br /><b> $479,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/CACARETS/main/0/P789444_0.jpg";
    
    s.link = "http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P789444&bid=177&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P789444&bid=177&fe=1 ' title='Click to view property info'>416 XIMENO DRIVE<br /> FULLERTON, CA 92835<br /><b> $475,000 </b><br />4 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/CACARETS/main/0/P810025_0.jpg";
    
    s.link = "http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P810025&bid=177&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P810025&bid=177&fe=1 ' title='Click to view property info'>8449 PALMETTO AVENUE<br /> FONTANA, CA 92335<br /><b> $475,000 </b><br />9 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/CACARETS/main/0/P801316_0.jpg";
    
    s.link = "http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P801316&bid=177&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P801316&bid=177&fe=1 ' title='Click to view property info'>2012 TIMBERWOOD<br /> IRVINE, CA 92620<br /><b> $449,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/CACARETS/main/0/P805556_0.jpg";
    
    s.link = "http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P805556&bid=177&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P805556&bid=177&fe=1 ' title='Click to view property info'>3659 RADNOR AVENUE<br /> LONG BEACH, CA 90808<br /><b> $424,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/CACARETS/main/0/P798627_0.jpg";
    
    s.link = "http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P798627&bid=177&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P798627&bid=177&fe=1 ' title='Click to view property info'>1755 NORTH AZURE STREET<br /> ANAHEIM, CA 92807<br /><b> $415,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/CACARETS/main/0/P809862_0.jpg";
    
    s.link = "http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P809862&bid=177&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P809862&bid=177&fe=1 ' title='Click to view property info'>13701 CARROLL WAY<br /> TUSTIN, CA 92780<br /><b> $415,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/CACARETS/main/0/P792626_0.jpg";
    
    s.link = "http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P792626&bid=177&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P792626&bid=177&fe=1 ' title='Click to view property info'>17319 TIMBERVIEW DRIVE<br /> RIVERSIDE, CA 92504<br /><b> $399,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/CACARETS/main/0/P798368_0.jpg";
    
    s.link = "http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P798368&bid=177&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P798368&bid=177&fe=1 ' title='Click to view property info'>5852 THISTLEBERRY COURT<br /> CHINO HILLS, CA 91709<br /><b> $384,900 </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/CACARETS/main/0/P781445_0.jpg";
    
    s.link = "http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P781445&bid=177&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P781445&bid=177&fe=1 ' title='Click to view property info'>92 TOPAZ #130<br /> IRVINE, CA 92606<br /><b> $375,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/CACARETS/main/0/P797709_0.jpg";
    
    s.link = "http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P797709&bid=177&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P797709&bid=177&fe=1 ' title='Click to view property info'>13274 BABBLING BROOK WAY<br /> CORONA, CA 92880<br /><b> $374,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/CACARETS/main/0/P801346_0.jpg";
    
    s.link = "http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P801346&bid=177&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P801346&bid=177&fe=1 ' title='Click to view property info'>646 SOUTH WESTCHESTER DRIVE<br /> ANAHEIM, CA 92804<br /><b> $360,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/CACARETS/main/0/P807765_0.jpg";
    
    s.link = "http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P807765&bid=177&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P807765&bid=177&fe=1 ' title='Click to view property info'>2120 WEST PACIFIC AVENUE<br /> ANAHEIM, CA 92804<br /><b> $351,000 </b><br />4 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/CACARETS/main/0/P762281_0.jpg";
    
    s.link = "http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P762281&bid=177&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P762281&bid=177&fe=1 ' title='Click to view property info'>930 TWILIGHT LANE<br /> PLACENTIA, CA 92870<br /><b> $350,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/CACARETS/main/0/P801788_0.jpg";
    
    s.link = "http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P801788&bid=177&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P801788&bid=177&fe=1 ' title='Click to view property info'>8362 EAST TRUCKEE WAY<br /> ANAHEIM HILLS, CA 92808<br /><b> $344,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/CACARETS/main/0/P779832_0.jpg";
    
    s.link = "http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P779832&bid=177&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P779832&bid=177&fe=1 ' title='Click to view property info'>13772 EAST WOODCREST COURT<br /> CORONA, CA 92880<br /><b> $335,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/CACARETS/main/0/P805052_0.jpg";
    
    s.link = "http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P805052&bid=177&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P805052&bid=177&fe=1 ' title='Click to view property info'>880 NASHUA STREET<br /> LA HABRA, CA 90631<br /><b> $335,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/CACARETS/main/0/P767308_0.jpg";
    
    s.link = "http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P767308&bid=177&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P767308&bid=177&fe=1 ' title='Click to view property info'>16321 LANDMARK DRIVE<br /> WHITTIER, CA 90604<br /><b> $330,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/CACARETS/main/0/P795536_0.jpg";
    
    s.link = "http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P795536&bid=177&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P795536&bid=177&fe=1 ' title='Click to view property info'>573 HILLSBOROUGH WAY<br /> CORONA, CA 92879<br /><b> $329,999 </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/CACARETS/main/0/P805382_0.jpg";
    
    s.link = "http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P805382&bid=177&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P805382&bid=177&fe=1 ' title='Click to view property info'>343 WEST DAWSON COURT<br /> GLENDORA, CA 91740<br /><b> $325,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/CACARETS/main/0/P804044_0.jpg";
    
    s.link = "http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P804044&bid=177&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P804044&bid=177&fe=1 ' title='Click to view property info'>2916 NORTH SANTA FE PLACE<br /> ORANGE, CA 92865<br /><b> $300,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/CACARETS/main/0/P805758_0.jpg";
    
    s.link = "http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P805758&bid=177&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P805758&bid=177&fe=1 ' title='Click to view property info'>18095 YOSEMITE COURT<br /> FOUNTAIN VALLEY, CA 92708<br /><b> $300,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/CACARETS/main/0/P798833_0.jpg";
    
    s.link = "http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P798833&bid=177&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P798833&bid=177&fe=1 ' title='Click to view property info'>9396 BARKERVILLE AVENUE<br /> WHITTIER, CA 90605<br /><b> $299,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/CACARETS/main/0/P805449_0.jpg";
    
    s.link = "http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P805449&bid=177&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P805449&bid=177&fe=1 ' title='Click to view property info'>831 WEST BAKER<br /> FULLERTON, CA 92832<br /><b> $299,000 </b><br />4 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/CACARETS/main/0/P793342_0.jpg";
    
    s.link = "http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P793342&bid=177&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P793342&bid=177&fe=1 ' title='Click to view property info'>6175 GRANBY AVENUE<br /> RANCHO CUCAMONGA, CA 91737<br /><b> $295,000 </b><br />4 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/CACARETS/main/0/P804943_0.jpg";
    
    s.link = "http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P804943&bid=177&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P804943&bid=177&fe=1 ' title='Click to view property info'>2361 WILSHIRE AVENUE<br /> LA HABRA, CA 90631<br /><b> $289,900 </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/CACARETS/main/0/P797926_0.jpg";
    
    s.link = "http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P797926&bid=177&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P797926&bid=177&fe=1 ' title='Click to view property info'>15909 FORMBY DRIVE<br /> LA MIRADA, CA 90638<br /><b> $285,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/CACARETS/main/0/P801029_0.jpg";
    
    s.link = "http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P801029&bid=177&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P801029&bid=177&fe=1 ' title='Click to view property info'>14325 MADRIS AVENUE<br /> NORWALK, CA 90650<br /><b> $266,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/CACARETS/main/0/P796548_0.jpg";
    
    s.link = "http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P796548&bid=177&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P796548&bid=177&fe=1 ' title='Click to view property info'>11081 LINDA LANE #C<br /> GARDEN GROVE, CA 92840<br /><b> $265,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/CACARETS/main/0/P807882_0.jpg";
    
    s.link = "http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P807882&bid=177&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P807882&bid=177&fe=1 ' title='Click to view property info'>9114 ARMLEY AVENUE<br /> WHITTIER, CA 90603<br /><b> $265,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/CACARETS/main/0/P808313_0.jpg";
    
    s.link = "http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P808313&bid=177&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P808313&bid=177&fe=1 ' title='Click to view property info'>12388 DELPHEY AVENUE<br /> CHINO, CA 91710<br /><b> $265,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/CACARETS/main/0/P808127_0.jpg";
    
    s.link = "http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P808127&bid=177&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P808127&bid=177&fe=1 ' title='Click to view property info'>1511 PROSPECT AVENUE #A<br /> PLACENTIA, CA 92870<br /><b> $260,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/CACARETS/main/0/P798952_0.jpg";
    
    s.link = "http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P798952&bid=177&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P798952&bid=177&fe=1 ' title='Click to view property info'>14917 RAGUS STREET<br /> LA PUENTE, CA 91744<br /><b> $255,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/CACARETS/main/0/P808378_0.jpg";
    
    s.link = "http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P808378&bid=177&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P808378&bid=177&fe=1 ' title='Click to view property info'>LA HABRA, CA 90631<br /><b> $253,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/CACARETS/main/0/P804339_0.jpg";
    
    s.link = "http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P804339&bid=177&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P804339&bid=177&fe=1 ' title='Click to view property info'>13382 BEACH TERRACE DRIVE<br /> GARDEN GROVE, CA 92844<br /><b> $250,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/CACARETS/main/0/P808336_0.jpg";
    
    s.link = "http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P808336&bid=177&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P808336&bid=177&fe=1 ' title='Click to view property info'>626 NORTH CLEMENTINE STREET<br /> ANAHEIM, CA 92805<br /><b> $249,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/CACARETS/main/0/P801404_0.jpg";
    
    s.link = "http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P801404&bid=177&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P801404&bid=177&fe=1 ' title='Click to view property info'>28446 YOSEMITE DRIVE<br /> TRABUCO CANYON, CA 92679<br /><b> $248,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/CACARETS/main/0/P752720_0.jpg";
    
    s.link = "http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P752720&bid=177&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P752720&bid=177&fe=1 ' title='Click to view property info'>1352 NORTH MAKO LANE #22<br /> ANAHEIM, CA 92801<br /><b> $240,000 </b><br />2 Beds - 1 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/CACARETS/main/0/P792178_0.jpg";
    
    s.link = "http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P792178&bid=177&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P792178&bid=177&fe=1 ' title='Click to view property info'>931 NORTH FERN STREET<br /> ANAHEIM, CA 92801<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/CACARETS/main/0/P807533_0.jpg";
    
    s.link = "http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P807533&bid=177&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P807533&bid=177&fe=1 ' title='Click to view property info'>1417 YORKSHIRE LANE<br /> LA HABRA, CA 90631<br /><b> $239,500 </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/CACARETS/main/0/P800253_0.jpg";
    
    s.link = "http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P800253&bid=177&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P800253&bid=177&fe=1 ' title='Click to view property info'>12904 GOLLER<br /> NORWALK, CA 90650<br /><b> $234,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/CACARETS/main/0/P799354_0.jpg";
    
    s.link = "http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P799354&bid=177&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P799354&bid=177&fe=1 ' title='Click to view property info'>2301 HERITAGE DRIVE<br /> CORONA, CA 92882<br /><b> $229,999 </b><br />4 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/CACARETS/main/0/P807426_0.jpg";
    
    s.link = "http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P807426&bid=177&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P807426&bid=177&fe=1 ' title='Click to view property info'>3356 FERN CIRCLE<br /> LAKE ELSINORE, CA 92530<br /><b> $229,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/CACARETS/main/0/P796443_0.jpg";
    
    s.link = "http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P796443&bid=177&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P796443&bid=177&fe=1 ' title='Click to view property info'>1136 ZIRCON STREET<br /> CORONA, CA 92882<br /><b> $219,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/CACARETS/main/0/P784181_0.jpg";
    
    s.link = "http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P784181&bid=177&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P784181&bid=177&fe=1 ' title='Click to view property info'>29700 LONGHORN DRIVE<br /> CANYON LAKE, CA 92587<br /><b> $215,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/CACARETS/main/0/P792631_0.jpg";
    
    s.link = "http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P792631&bid=177&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P792631&bid=177&fe=1 ' title='Click to view property info'>36910 MOONBROOK LANE<br /> MURRIETA, CA 92563<br /><b> $200,000 </b><br />3 Beds - 1 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/CACARETS/main/0/P804698_0.jpg";
    
    s.link = "http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P804698&bid=177&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P804698&bid=177&fe=1 ' title='Click to view property info'>25551 INDIAN HILLS #B<br /> LAGUNA HILLS, CA 92653<br /><b> $197,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/CACARETS/main/0/P797261_0.jpg";
    
    s.link = "http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P797261&bid=177&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P797261&bid=177&fe=1 ' title='Click to view property info'>1009 NORTH WENDY AVENUE<br /> BIG BEAR, CA 92314<br /><b> $190,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/CACARETS/main/0/P783865_0.jpg";
    
    s.link = "http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P783865&bid=177&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P783865&bid=177&fe=1 ' title='Click to view property info'>3481 DOE SPRING CIRCLE<br /> CORONA, CA 92882<br /><b> $189,900 </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/CACARETS/main/0/P797966_0.jpg";
    
    s.link = "http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P797966&bid=177&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P797966&bid=177&fe=1 ' title='Click to view property info'>9250 SUNLAND BOULEVARD #22<br /> SUN VALLEY, CA 91352<br /><b> $184,900 </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/CACARETS/main/0/P801829_0.jpg";
    
    s.link = "http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P801829&bid=177&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P801829&bid=177&fe=1 ' title='Click to view property info'>2851 ROLLING HILLS DRIVE #147<br /> FULLERTON, CA 92835<br /><b> $184,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/CACARETS/main/0/P778085_0.jpg";
    
    s.link = "http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P778085&bid=177&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P778085&bid=177&fe=1 ' title='Click to view property info'>1641 SOUTH POMONA AVENUE #D36<br /> FULLERTON, CA 92832<br /><b> $180,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/CACARETS/main/0/P803144_0.jpg";
    
    s.link = "http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P803144&bid=177&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P803144&bid=177&fe=1 ' title='Click to view property info'>927 PARULA STREET<br /> PERRIS, CA 92571<br /><b> $180,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/CACARETS/main/0/P808681_0.jpg";
    
    s.link = "http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P808681&bid=177&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P808681&bid=177&fe=1 ' title='Click to view property info'>5350 SILVER CANYON ROAD #12F<br /> YORBA LINDA, CA 92887<br /><b> $179,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/CACARETS/main/0/P800095_0.jpg";
    
    s.link = "http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P800095&bid=177&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P800095&bid=177&fe=1 ' title='Click to view property info'>5004 TULSA AVENUE<br /> RIVERSIDE, CA 92505<br /><b> $175,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/CACARETS/main/0/P801818_0.jpg";
    
    s.link = "http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P801818&bid=177&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P801818&bid=177&fe=1 ' title='Click to view property info'>52945 AVENIDA HERRERA<br /> LA QUINTA, CA 92253<br /><b> $175,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/CACARETS/main/0/P782966_0.jpg";
    
    s.link = "http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P782966&bid=177&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P782966&bid=177&fe=1 ' title='Click to view property info'>5218 OLD MILL ROAD<br /> RIVERSIDE, CA 92504<br /><b> $174,900 </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/CACARETS/main/0/P808839_0.jpg";
    
    s.link = "http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P808839&bid=177&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P808839&bid=177&fe=1 ' title='Click to view property info'>11226 SHEEP CREEK ROAD<br /> PHELAN, CA 92371<br /><b> $169,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/CACARETS/main/0/P761276_0.jpg";
    
    s.link = "http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P761276&bid=177&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P761276&bid=177&fe=1 ' title='Click to view property info'>7005 JORDAN AVENUE #107<br /> CANOGA PARK, CA 91303<br /><b> $168,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/CACARETS/main/0/P808257_0.jpg";
    
    s.link = "http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P808257&bid=177&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P808257&bid=177&fe=1 ' title='Click to view property info'>1627 CONIFER CIRCLE<br /> CORONA, CA 92879<br /><b> $160,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/CACARETS/main/0/P808512_0.jpg";
    
    s.link = "http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P808512&bid=177&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P808512&bid=177&fe=1 ' title='Click to view property info'>17022 FERN STREET<br /> FONTANA, CA 92336<br /><b> $160,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/CACARETS/main/0/P782959_0.jpg";
    
    s.link = "http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P782959&bid=177&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P782959&bid=177&fe=1 ' title='Click to view property info'>3140 CASTELAR COURT #203<br /> CORONA, CA 92882<br /><b> $159,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/CACARETS/main/0/P796920_0.jpg";
    
    s.link = "http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P796920&bid=177&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P796920&bid=177&fe=1 ' title='Click to view property info'>1450 LYNDEN TRAILS DRIVE<br /> SAN JACINTO, CA 92582<br /><b> $155,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/CACARETS/main/0/P803762_0.jpg";
    
    s.link = "http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P803762&bid=177&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P803762&bid=177&fe=1 ' title='Click to view property info'>8939 GALLATIN ROAD #73<br /> PICO RIVERA, CA 90660<br /><b> $155,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/CACARETS/main/0/P769555_0.jpg";
    
    s.link = "http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P769555&bid=177&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P769555&bid=177&fe=1 ' title='Click to view property info'>3046 ASSOCIATED ROAD #45<br /> FULLERTON, CA 92835<br /><b> $146,999 </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/CACARETS/main/0/P808498_0.jpg";
    
    s.link = "http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P808498&bid=177&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P808498&bid=177&fe=1 ' title='Click to view property info'>26166 LOS VIVEROS #219<br /> MISSION VIEJO, CA 92691<br /><b> $145,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/CACARETS/main/0/P806202_0.jpg";
    
    s.link = "http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P806202&bid=177&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P806202&bid=177&fe=1 ' title='Click to view property info'>29127 VIA CERRITO #30<br /> LAGUNA NIGUEL, CA 92677<br /><b> $140,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/CACARETS/main/0/P807582_0.jpg";
    
    s.link = "http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P807582&bid=177&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P807582&bid=177&fe=1 ' title='Click to view property info'>2454 EARP STREET<br /> COLTON, CA 92324<br /><b> $140,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/CACARETS/main/0/P796509_0.jpg";
    
    s.link = "http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P796509&bid=177&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P796509&bid=177&fe=1 ' title='Click to view property info'>21710 PEAK CIRCLE ROAD<br /> CRESTLINE, CA 92322<br /><b> $135,000 </b><br />4 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/CACARETS/main/0/P741632_0.jpg";
    
    s.link = "http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P741632&bid=177&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P741632&bid=177&fe=1 ' title='Click to view property info'>13980 RIDGEWOOD DRIVE<br /> FONTANA, CA 92337<br /><b> $115,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/CACARETS/main/0/P784141_0.jpg";
    
    s.link = "http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P784141&bid=177&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P784141&bid=177&fe=1 ' title='Click to view property info'>1231 HILLANDALE AVENUE #13<br /> LA HABRA, CA 90631<br /><b> $97,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/CACARETS/main/0/P806261_0.jpg";
    
    s.link = "http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P806261&bid=177&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P806261&bid=177&fe=1 ' title='Click to view property info'>7000 SOUTH LA CIENEGA BOULEVARD #12<br /> INGLEWOOD, CA 90302<br /><b> $79,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/CACARETS/main/0/P762110_0.jpg";
    
    s.link = "http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P762110&bid=177&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P762110&bid=177&fe=1 ' title='Click to view property info'>57033 JUAREZ COURT<br /> YUCCA VALLEY, CA 92284<br /><b> $259,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/CACARETS/main/0/P808810_0.jpg";
    
    s.link = "http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P808810&bid=177&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P808810&bid=177&fe=1 ' title='Click to view property info'>0 SILVER LAKES PARKWAY<br /> HELENDALE, CA 92342<br /><b> $24,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/CACARETS/main/0/P794924_0.jpg";
    
    s.link = "http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P794924&bid=177&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P794924&bid=177&fe=1 ' title='Click to view property info'>2851 ROLLING HILLS DRIVE #147<br /> FULLERTON, CA 92835<br /><b> $184,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/CACARETS/main/0/P804895_0.jpg";
    
    s.link = "http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P804895&bid=177&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P804895&bid=177&fe=1 ' title='Click to view property info'>501 EAST ORANGETHORPE AVENUE #14<br /> ANAHEIM, CA 92832<br /><b> $69,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/CACARETS/main/0/P808743_0.jpg";
    
    s.link = "http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P808743&bid=177&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P808743&bid=177&fe=1 ' title='Click to view property info'>201 WEST COLLINS #93<br /> ORANGE, CA 92867<br /><b> $64,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/CACARETS/main/0/P799970_0.jpg";
    
    s.link = "http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P799970&bid=177&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P799970&bid=177&fe=1 ' title='Click to view property info'>1919 WEST CORONET AVENUE #27<br /> ANAHEIM, CA 92801<br /><b> $49,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/CACARETS/main/0/P808744_0.jpg";
    
    s.link = "http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P808744&bid=177&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P808744&bid=177&fe=1 ' title='Click to view property info'>1550 RIMPAU #67<br /> CORONA, CA 92881<br /><b> $39,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/CACARETS/main/0/P807122_0.jpg";
    
    s.link = "http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P807122&bid=177&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P807122&bid=177&fe=1 ' title='Click to view property info'>1456 PHILADELPHIA #400<br /> ONTARIO, CA 91761<br /><b> $34,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/CACARETS/main/0/P808876_0.jpg";
    
    s.link = "http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P808876&bid=177&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P808876&bid=177&fe=1 ' title='Click to view property info'>13381 MAGNOLIA AVENUE #8<br /> CORONA, CA 92879<br /><b> $28,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/CACARETS/main/0/P801962_0.jpg";
    
    s.link = "http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P801962&bid=177&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P801962&bid=177&fe=1 ' title='Click to view property info'>64 62ND PLACE<br /> LONG BEACH, CA 90803<br /><b> $1,399,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/CACARETS/main/0/P798995_0.jpg";
    
    s.link = "http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P798995&bid=177&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P798995&bid=177&fe=1 ' title='Click to view property info'>372 ROSEMONT AVENUE<br /> PASADENA, CA 91103<br /><b> $979,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/CACARETS/main/0/P810044_0.jpg";
    
    s.link = "http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P810044&bid=177&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P810044&bid=177&fe=1 ' title='Click to view property info'>8447 PALMETTO AVENUE<br /> FONTANA, CA 92335<br /><b> $475,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/CACARETS/main/0/P807051_0.jpg";
    
    s.link = "http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P807051&bid=177&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P807051&bid=177&fe=1 ' title='Click to view property info'>2424 WEST BOULEVARD<br /> LOS ANGELES, CA 90016<br /><b> $290,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/CACARETS/main/0/P794887_0.jpg";
    
    s.link = "http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P794887&bid=177&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P794887&bid=177&fe=1 ' title='Click to view property info'>1239 E STREET<br /> CORONA, CA 92882<br /><b> $282,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/CACARETS/main/0/P809774_0.jpg";
    
    s.link = "http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P809774&bid=177&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P809774&bid=177&fe=1 ' title='Click to view property info'>5520 BLACKWELDER STREET<br /> LOS ANGELES, CA 90016<br /><b> $269,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/CACARETS/main/0/P809643_0.jpg";
    
    s.link = "http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P809643&bid=177&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P809643&bid=177&fe=1 ' title='Click to view property info'>2500 LARKWOOD DRIVE<br /> FULLERTON, CA 92833<br /><b> $ 3,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/CACARETS/main/0/P806268_0.jpg";
    
    s.link = "http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P806268&bid=177&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P806268&bid=177&fe=1 ' title='Click to view property info'>1511 EAST VIRGINIA ROAD<br /> FULLERTON, CA 92831<br /><b> $ 2,750 </b><br />3 Beds - 1 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/CACARETS/main/0/P803616_0.jpg";
    
    s.link = "http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P803616&bid=177&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P803616&bid=177&fe=1 ' title='Click to view property info'>100 SOUTH ALAMEDA STREET #156<br /> LOS ANGELES, CA 90012<br /><b> $ 2,200 </b><br />2 Beds</a></div>";
    SLIDES.add_slide(s);
    //s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
    
    s = new slide();
    s.src = "http://pix.idxre.com/pix/CACARETS/main/0/P806090_0.jpg";
    
    s.link = "http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P806090&bid=177&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P806090&bid=177&fe=1 ' title='Click to view property info'>7827 EAST MENTON AVENUE<br /> ANAHEIM HILLS, CA 92808<br /><b> $ 1,850 </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/CACARETS/main/0/P809599_0.jpg";
    
    s.link = "http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P809599&bid=177&fe=1"; 
    
    s.text = "<div class='ihfslidestext' style='font-size:12px;'><a href='http://tngrealestate.com.idxre.com/idx/detail.cfm?cid=46491&pid=P809599&bid=177&fe=1 ' title='Click to view property info'>400 NORTH ACACIA AVENUE #B22<br /> FULLERTON, CA 92831<br /><b> $ 1,100 </b><br />1 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
    
      }
      
    }
	
