/*==================================================*
 $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/GAFMLS/main/0/3915417_0.jpg";
		
		s.link = "http://www.idxre.com/idx/detail.cfm?cid=3237&pid=3915417&bid=49"; 
		
		s.text = "<div class='ihfslidestext' style='font-size:16px;'>866 GREENWOOD AVE NE<br /> ATLANTA, GA 30306<br /><b> $464,000 </b><br />3 Beds - 2 Baths</div>";
		SLIDES.add_slide(s);
		//s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
		
		s = new slide();
		s.src = "http://pix.idxre.com/pix/GAFMLS/main/0/3952628_0.jpg";
		
		s.link = "http://www.idxre.com/idx/detail.cfm?cid=3237&pid=3952628&bid=49"; 
		
		s.text = "<div class='ihfslidestext' style='font-size:16px;'>695 JEP WHEELER RD<br /> WOODSTOCK, GA 30188<br /><b> $425,000 </b><br />3 Beds - 2 Full | 1 Partial Baths</div>";
		SLIDES.add_slide(s);
		//s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
		
		s = new slide();
		s.src = "http://pix.idxre.com/pix/GAFMLS/main/0/4002441_0.jpg";
		
		s.link = "http://www.idxre.com/idx/detail.cfm?cid=3237&pid=4002441&bid=49"; 
		
		s.text = "<div class='ihfslidestext' style='font-size:16px;'>1920 BROADWELL OAKS DR<br /> ALPHARETTA, GA 30004<br /><b> $399,900 </b><br />5 Beds - 3 Full | 1 Partial Baths</div>";
		SLIDES.add_slide(s);
		//s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
		
		s = new slide();
		s.src = "http://pix.idxre.com/pix/GAFMLS/main/0/3934956_0.jpg";
		
		s.link = "http://www.idxre.com/idx/detail.cfm?cid=3237&pid=3934956&bid=49"; 
		
		s.text = "<div class='ihfslidestext' style='font-size:16px;'>3312 ROUGH CREEK DR<br /> WOODSTOCK, GA 30189<br /><b> $395,000 </b><br />4 Beds - 4 Full | 2 Partial Baths</div>";
		SLIDES.add_slide(s);
		//s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
		
		s = new slide();
		s.src = "http://pix.idxre.com/pix/GAFMLS/main/0/3929407_0.jpg";
		
		s.link = "http://www.idxre.com/idx/detail.cfm?cid=3237&pid=3929407&bid=49"; 
		
		s.text = "<div class='ihfslidestext' style='font-size:16px;'>35 LINDLEY AVE NW<br /> MARIETTA, GA 30064<br /><b> $380,000 </b><br />3 Beds - 3 Baths</div>";
		SLIDES.add_slide(s);
		//s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
		
		s = new slide();
		s.src = "http://pix.idxre.com/pix/GAFMLS/main/0/3929404_0.jpg";
		
		s.link = "http://www.idxre.com/idx/detail.cfm?cid=3237&pid=3929404&bid=49"; 
		
		s.text = "<div class='ihfslidestext' style='font-size:16px;'>23 LINDLEY AVE NW<br /> MARIETTA, GA 30064<br /><b> $375,000 </b><br />3 Beds - 3 Baths</div>";
		SLIDES.add_slide(s);
		//s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
		
		s = new slide();
		s.src = "http://pix.idxre.com/pix/GAFMLS/main/0/3954804_0.jpg";
		
		s.link = "http://www.idxre.com/idx/detail.cfm?cid=3237&pid=3954804&bid=49"; 
		
		s.text = "<div class='ihfslidestext' style='font-size:16px;'>1478 FRIENDSHIP CHURCH ROAD<br /> DOUGLASVILLE, GA 30134<br /><b> $375,000 </b><br />3 Beds - 3 Full | 1 Partial Baths</div>";
		SLIDES.add_slide(s);
		//s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
		
		s = new slide();
		s.src = "http://pix.idxre.com/pix/GAFMLS/main/0/3907617_0.jpg";
		
		s.link = "http://www.idxre.com/idx/detail.cfm?cid=3237&pid=3907617&bid=49"; 
		
		s.text = "<div class='ihfslidestext' style='font-size:16px;'>7176 RIDGEVIEW DR<br /> BIG CANOE, GA 30143<br /><b> $374,900 </b><br />4 Beds - 3 Baths</div>";
		SLIDES.add_slide(s);
		//s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
		
		s = new slide();
		s.src = "http://pix.idxre.com/pix/GAFMLS/main/0/3930325_0.jpg";
		
		s.link = "http://www.idxre.com/idx/detail.cfm?cid=3237&pid=3930325&bid=49"; 
		
		s.text = "<div class='ihfslidestext' style='font-size:16px;'>43 LINDLEY AVE NW<br /> MARIETTA, GA 30064<br /><b> $350,000 </b><br />2 Beds - 2 Baths</div>";
		SLIDES.add_slide(s);
		//s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
		
		s = new slide();
		s.src = "http://pix.idxre.com/pix/GAFMLS/main/0/3980805_0.jpg";
		
		s.link = "http://www.idxre.com/idx/detail.cfm?cid=3237&pid=3980805&bid=49"; 
		
		s.text = "<div class='ihfslidestext' style='font-size:16px;'>330 BARROW DOWNS<br /> ALPHARETTA, GA 30004<br /><b> $350,000 </b><br />6 Beds - 4 Baths</div>";
		SLIDES.add_slide(s);
		//s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
		
		s = new slide();
		s.src = "http://pix.idxre.com/pix/GAFMLS/main/0/3975440_0.jpg";
		
		s.link = "http://www.idxre.com/idx/detail.cfm?cid=3237&pid=3975440&bid=49"; 
		
		s.text = "<div class='ihfslidestext' style='font-size:16px;'>70 CORSON TRL<br /> TAYLORSVILLE, GA 30178<br /><b> $299,000 </b><br />3 Beds - 2 Baths</div>";
		SLIDES.add_slide(s);
		//s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
		
		s = new slide();
		s.src = "http://pix.idxre.com/pix/GAFMLS/main/0/3989619_0.jpg";
		
		s.link = "http://www.idxre.com/idx/detail.cfm?cid=3237&pid=3989619&bid=49"; 
		
		s.text = "<div class='ihfslidestext' style='font-size:16px;'>4299 EAST CHEROKEE DR<br /> CANTON, GA 30115<br /><b> $290,000 </b><br />3 Beds - 1 Baths</div>";
		SLIDES.add_slide(s);
		//s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
		
		s = new slide();
		s.src = "http://pix.idxre.com/pix/GAFMLS/main/0/4010593_0.jpg";
		
		s.link = "http://www.idxre.com/idx/detail.cfm?cid=3237&pid=4010593&bid=49"; 
		
		s.text = "<div class='ihfslidestext' style='font-size:16px;'>1520 WILLOW PARK WAY<br /> CUMMING, GA 30041<br /><b> $289,900 </b><br />4 Beds - 3 Baths</div>";
		SLIDES.add_slide(s);
		//s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
		
		s = new slide();
		s.src = "http://pix.idxre.com/pix/GAFMLS/main/0/3848834_0.jpg";
		
		s.link = "http://www.idxre.com/idx/detail.cfm?cid=3237&pid=3848834&bid=49"; 
		
		s.text = "<div class='ihfslidestext' style='font-size:16px;'>273 CHADWICK PL<br /> JASPER, GA 30143<br /><b> $270,000 </b><br />4 Beds - 3 Full | 1 Partial Baths</div>";
		SLIDES.add_slide(s);
		//s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
		
		s = new slide();
		s.src = "http://pix.idxre.com/pix/GAFMLS/main/0/3853691_0.jpg";
		
		s.link = "http://www.idxre.com/idx/detail.cfm?cid=3237&pid=3853691&bid=49"; 
		
		s.text = "<div class='ihfslidestext' style='font-size:16px;'>3150 CRESTMONT WAY<br /> KENNESAW, GA 30152<br /><b> $269,000 </b><br />4 Beds - 2 Full | 1 Partial Baths</div>";
		SLIDES.add_slide(s);
		//s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
		
		s = new slide();
		s.src = "http://pix.idxre.com/pix/GAFMLS/main/0/4009025_0.jpg";
		
		s.link = "http://www.idxre.com/idx/detail.cfm?cid=3237&pid=4009025&bid=49"; 
		
		s.text = "<div class='ihfslidestext' style='font-size:16px;'>112 LANSING DR NW<br /> KENNESAW, GA 30144<br /><b> $230,000 </b><br />4 Beds - 3 Full | 1 Partial Baths</div>";
		SLIDES.add_slide(s);
		//s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
		
		s = new slide();
		s.src = "http://pix.idxre.com/pix/GAFMLS/main/0/3997735_0.jpg";
		
		s.link = "http://www.idxre.com/idx/detail.cfm?cid=3237&pid=3997735&bid=49"; 
		
		s.text = "<div class='ihfslidestext' style='font-size:16px;'>3870 PILGRIM MILL RD<br /> CUMMING, GA 30041<br /><b> $197,900 </b><br />6 Beds - 3 Baths</div>";
		SLIDES.add_slide(s);
		//s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
		
		s = new slide();
		s.src = "http://pix.idxre.com/pix/GAFMLS/main/0/4002001_0.jpg";
		
		s.link = "http://www.idxre.com/idx/detail.cfm?cid=3237&pid=4002001&bid=49"; 
		
		s.text = "<div class='ihfslidestext' style='font-size:16px;'>311 CHESAPEAKE RDG<br /> WOODSTOCK, GA 30189<br /><b> $197,900 </b><br />4 Beds - 2 Full | 1 Partial Baths</div>";
		SLIDES.add_slide(s);
		//s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
		
		s = new slide();
		s.src = "http://pix.idxre.com/pix/GAFMLS/main/0/3962139_0.jpg";
		
		s.link = "http://www.idxre.com/idx/detail.cfm?cid=3237&pid=3962139&bid=49"; 
		
		s.text = "<div class='ihfslidestext' style='font-size:16px;'>4269 EAST CHEROKEE DR<br /> CANTON, GA 30115<br /><b> $176,400 </b><br />3 Beds - 2 Baths</div>";
		SLIDES.add_slide(s);
		//s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
		
		s = new slide();
		s.src = "http://pix.idxre.com/pix/GAFMLS/main/0/3997269_0.jpg";
		
		s.link = "http://www.idxre.com/idx/detail.cfm?cid=3237&pid=3997269&bid=49"; 
		
		s.text = "<div class='ihfslidestext' style='font-size:16px;'>2615 WOODLAND HILLS DR<br /> CUMMING, GA 30040<br /><b> $174,900 </b><br />4 Beds - 3 Baths</div>";
		SLIDES.add_slide(s);
		//s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
		
		s = new slide();
		s.src = "http://pix.idxre.com/pix/GAFMLS/main/0/3980341_0.jpg";
		
		s.link = "http://www.idxre.com/idx/detail.cfm?cid=3237&pid=3980341&bid=49"; 
		
		s.text = "<div class='ihfslidestext' style='font-size:16px;'>114 LINTON ST<br /> WOODSTOCK, GA 30188<br /><b> $169,900 </b><br />4 Beds - 2 Baths</div>";
		SLIDES.add_slide(s);
		//s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
		
		s = new slide();
		s.src = "http://pix.idxre.com/pix/GAFMLS/main/0/4004228_0.jpg";
		
		s.link = "http://www.idxre.com/idx/detail.cfm?cid=3237&pid=4004228&bid=49"; 
		
		s.text = "<div class='ihfslidestext' style='font-size:16px;'>360 CHAMBERS ST<br /> WOODSTOCK, GA 30188<br /><b> $165,000 </b><br />1 Beds - 1 Baths</div>";
		SLIDES.add_slide(s);
		//s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
		
		s = new slide();
		s.src = "http://pix.idxre.com/pix/GAFMLS/main/0/3950581_0.jpg";
		
		s.link = "http://www.idxre.com/idx/detail.cfm?cid=3237&pid=3950581&bid=49"; 
		
		s.text = "<div class='ihfslidestext' style='font-size:16px;'>1722 STANWOOD DR NW<br /> KENNESAW, GA 30152<br /><b> $134,000 </b><br />3 Beds - 2 Full | 1 Partial Baths</div>";
		SLIDES.add_slide(s);
		//s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
		
		s = new slide();
		s.src = "http://pix.idxre.com/pix/GAFMLS/main/0/3953243_0.jpg";
		
		s.link = "http://www.idxre.com/idx/detail.cfm?cid=3237&pid=3953243&bid=49"; 
		
		s.text = "<div class='ihfslidestext' style='font-size:16px;'>209 PEARIDGE RD<br /> CANTON, GA 30114<br /><b> $99,900 </b><br />3 Beds - 1 Baths</div>";
		SLIDES.add_slide(s);
		//s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
		
		s = new slide();
		s.src = "http://pix.idxre.com/pix/GAFMLS/main/0/4009352_0.jpg";
		
		s.link = "http://www.idxre.com/idx/detail.cfm?cid=3237&pid=4009352&bid=49"; 
		
		s.text = "<div class='ihfslidestext' style='font-size:16px;'>3021 DAMASCUS ROAD<br /> JASPER, GA 30143<br /><b> $2,500,000 </b><br /></div>";
		SLIDES.add_slide(s);
		//s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
		
		s = new slide();
		s.src = "http://pix.idxre.com/pix/GAFMLS/main/0/3842413_0.jpg";
		
		s.link = "http://www.idxre.com/idx/detail.cfm?cid=3237&pid=3842413&bid=49"; 
		
		s.text = "<div class='ihfslidestext' style='font-size:16px;'>0 HIGHWAY 53<br /> FAIRMONT, GA 30139<br /><b> $1,846,800 </b><br /></div>";
		SLIDES.add_slide(s);
		//s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
		
		s = new slide();
		s.src = "http://pix.idxre.com/pix/GAFMLS/main/0/4018698_0.jpg";
		
		s.link = "http://www.idxre.com/idx/detail.cfm?cid=3237&pid=4018698&bid=49"; 
		
		s.text = "<div class='ihfslidestext' style='font-size:16px;'>0 FINCHER ROAD<br /> WALESKA, GA 30183<br /><b> $1,050,000 </b><br /></div>";
		SLIDES.add_slide(s);
		//s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
		
		s = new slide();
		s.src = "http://pix.idxre.com/pix/GAFMLS/main/0/3935928_0.jpg";
		
		s.link = "http://www.idxre.com/idx/detail.cfm?cid=3237&pid=3935928&bid=49"; 
		
		s.text = "<div class='ihfslidestext' style='font-size:16px;'>2855 ARBOR HILL RD<br /> CANTON, GA 30115<br /><b> $699,900 </b><br /></div>";
		SLIDES.add_slide(s);
		//s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
		
		s = new slide();
		s.src = "http://pix.idxre.com/pix/GAFMLS/main/0/3627587_0.jpg";
		
		s.link = "http://www.idxre.com/idx/detail.cfm?cid=3237&pid=3627587&bid=49"; 
		
		s.text = "<div class='ihfslidestext' style='font-size:16px;'>0 COWART ROAD<br /> DAWSONVILLE, GA 30534<br /><b> $574,000 </b><br /></div>";
		SLIDES.add_slide(s);
		//s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
		
		s = new slide();
		s.src = "http://pix.idxre.com/pix/GAFMLS/main/0/3973227_0.jpg";
		
		s.link = "http://www.idxre.com/idx/detail.cfm?cid=3237&pid=3973227&bid=49"; 
		
		s.text = "<div class='ihfslidestext' style='font-size:16px;'>0 DRY POND ROAD<br /> TALKIN, GA 30175<br /><b> $560,400 </b><br /></div>";
		SLIDES.add_slide(s);
		//s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
		
		s = new slide();
		s.src = "http://pix.idxre.com/pix/GAFMLS/main/0/4018015_0.jpg";
		
		s.link = "http://www.idxre.com/idx/detail.cfm?cid=3237&pid=4018015&bid=49"; 
		
		s.text = "<div class='ihfslidestext' style='font-size:16px;'>0 FINCHER ROAD TRACT 2<br /> WALESKA, GA 30183<br /><b> $484,500 </b><br /></div>";
		SLIDES.add_slide(s);
		//s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
		
		s = new slide();
		s.src = "http://pix.idxre.com/pix/clientPhotos/0_1835462_Survey.jpg";
		
		 s.link = "http://www.idxre.com/idx/cpropertydetail.cfm?cid=3237&cpid=1835462&bid=0"; 
		
		s.text = "<div class='ihfslidestext' style='font-size:16px;'>TOWNE LAKE PKWY<br /> WOODSTOCK, GA 30189<br /><b> $475,000 </b><br /></div>";
		SLIDES.add_slide(s);
		//s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
		
		s = new slide();
		s.src = "http://pix.idxre.com/pix/GAFMLS/main/0/4007877_0.jpg";
		
		s.link = "http://www.idxre.com/idx/detail.cfm?cid=3237&pid=4007877&bid=49"; 
		
		s.text = "<div class='ihfslidestext' style='font-size:16px;'>0 REINHARDT COLLEGE PARKWAY<br /> WALESKA, GA 30183<br /><b> $405,225 </b><br /></div>";
		SLIDES.add_slide(s);
		//s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
		
		s = new slide();
		s.src = "http://pix.idxre.com/pix/GAFMLS/main/0/4013683_0.jpg";
		
		s.link = "http://www.idxre.com/idx/detail.cfm?cid=3237&pid=4013683&bid=49"; 
		
		s.text = "<div class='ihfslidestext' style='font-size:16px;'>0 GARLAND MTN TRAIL TRACT 8<br /> WALESKA, GA 30183<br /><b> $350,000 </b><br /></div>";
		SLIDES.add_slide(s);
		//s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
		
		s = new slide();
		s.src = "http://pix.idxre.com/pix/GAFMLS/main/0/3874616_0.jpg";
		
		s.link = "http://www.idxre.com/idx/detail.cfm?cid=3237&pid=3874616&bid=49"; 
		
		s.text = "<div class='ihfslidestext' style='font-size:16px;'>2683 JAMERSON ROAD<br /> MARIETTA, GA 30066<br /><b> $325,000 </b><br /></div>";
		SLIDES.add_slide(s);
		//s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
		
		s = new slide();
		s.src = "http://pix.idxre.com/pix/GAFMLS/main/0/3950871_0.jpg";
		
		s.link = "http://www.idxre.com/idx/detail.cfm?cid=3237&pid=3950871&bid=49"; 
		
		s.text = "<div class='ihfslidestext' style='font-size:16px;'>0 TRACT 3 FRIENDSHIP CHURCH ROAD<br /> DOUGLASVILLE, GA 30134<br /><b> $299,200 </b><br /></div>";
		SLIDES.add_slide(s);
		//s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
		
		s = new slide();
		s.src = "http://pix.idxre.com/pix/GAFMLS/main/0/3667151_0.jpg";
		
		s.link = "http://www.idxre.com/idx/detail.cfm?cid=3237&pid=3667151&bid=49"; 
		
		s.text = "<div class='ihfslidestext' style='font-size:16px;'>0 JAMERSON ROAD<br /> MARIETTA, GA 30066<br /><b> $225,000 </b><br /></div>";
		SLIDES.add_slide(s);
		//s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
		
		s = new slide();
		s.src = "http://pix.idxre.com/pix/GAFMLS/main/0/4018683_0.jpg";
		
		s.link = "http://www.idxre.com/idx/detail.cfm?cid=3237&pid=4018683&bid=49"; 
		
		s.text = "<div class='ihfslidestext' style='font-size:16px;'>0 FINCHER ROAD TRACT 4<br /> WALESKA, GA 30183<br /><b> $212,500 </b><br /></div>";
		SLIDES.add_slide(s);
		//s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
		
		s = new slide();
		s.src = "http://pix.idxre.com/pix/GAFMLS/main/0/3950839_0.jpg";
		
		s.link = "http://www.idxre.com/idx/detail.cfm?cid=3237&pid=3950839&bid=49"; 
		
		s.text = "<div class='ihfslidestext' style='font-size:16px;'>0 TRACT 1 FRIENDSHIP CHURCH ROAD<br /> DOUGLASVILLE, GA 30134<br /><b> $202,800 </b><br /></div>";
		SLIDES.add_slide(s);
		//s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
		
		s = new slide();
		s.src = "http://pix.idxre.com/pix/GAFMLS/main/0/3907323_0.jpg";
		
		s.link = "http://www.idxre.com/idx/detail.cfm?cid=3237&pid=3907323&bid=49"; 
		
		s.text = "<div class='ihfslidestext' style='font-size:16px;'>7 GARLAND MTN TRAIL<br /> WALESKA, GA 30183<br /><b> $200,000 </b><br /></div>";
		SLIDES.add_slide(s);
		//s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
		
		s = new slide();
		s.src = "http://pix.idxre.com/pix/GAFMLS/main/0/3203939_0.jpg";
		
		s.link = "http://www.idxre.com/idx/detail.cfm?cid=3237&pid=3203939&bid=49"; 
		
		s.text = "<div class='ihfslidestext' style='font-size:16px;'>21 SASSAFRAS MOUNTAIN<br /> ELLIJAY, GA 30536<br /><b> $180,600 </b><br /></div>";
		SLIDES.add_slide(s);
		//s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
		
		s = new slide();
		s.src = "http://pix.idxre.com/pix/GAFMLS/main/0/4005974_0.jpg";
		
		s.link = "http://www.idxre.com/idx/detail.cfm?cid=3237&pid=4005974&bid=49"; 
		
		s.text = "<div class='ihfslidestext' style='font-size:16px;'>252 TRADITIONS DRIVE LOT 14<br /> ALPHARETTA, GA 30004<br /><b> $175,000 </b><br /></div>";
		SLIDES.add_slide(s);
		//s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
		
		s = new slide();
		s.src = "http://pix.idxre.com/pix/GAFMLS/main/0/4005979_0.jpg";
		
		s.link = "http://www.idxre.com/idx/detail.cfm?cid=3237&pid=4005979&bid=49"; 
		
		s.text = "<div class='ihfslidestext' style='font-size:16px;'>258 TRADITIONS DRIVE LOT 17<br /> ALPHARETTA, GA 30004<br /><b> $175,000 </b><br /></div>";
		SLIDES.add_slide(s);
		//s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
		
		s = new slide();
		s.src = "http://pix.idxre.com/pix/GAFMLS/main/0/4007870_0.jpg";
		
		s.link = "http://www.idxre.com/idx/detail.cfm?cid=3237&pid=4007870&bid=49"; 
		
		s.text = "<div class='ihfslidestext' style='font-size:16px;'>0 REINHARDT COLLEGE PARKWAY<br /> WALESKA, GA 30183<br /><b> $172,725 </b><br /></div>";
		SLIDES.add_slide(s);
		//s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
		
		s = new slide();
		s.src = "http://pix.idxre.com/pix/GAFMLS/main/0/3950868_0.jpg";
		
		s.link = "http://www.idxre.com/idx/detail.cfm?cid=3237&pid=3950868&bid=49"; 
		
		s.text = "<div class='ihfslidestext' style='font-size:16px;'>0 TRACT 2 FRIENDSHIP CHURCH ROAD<br /> DOUGLASVILLE, GA 30134<br /><b> $171,350 </b><br /></div>";
		SLIDES.add_slide(s);
		//s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
		
		s = new slide();
		s.src = "http://pix.idxre.com/pix/GAFMLS/main/0/3203708_0.jpg";
		
		s.link = "http://www.idxre.com/idx/detail.cfm?cid=3237&pid=3203708&bid=49"; 
		
		s.text = "<div class='ihfslidestext' style='font-size:16px;'>9 SASSAFRAS MOUNTAIN<br /> ELLIJAY, GA 30536<br /><b> $168,000 </b><br /></div>";
		SLIDES.add_slide(s);
		//s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
		
		s = new slide();
		s.src = "http://pix.idxre.com/pix/GAFMLS/main/0/4007874_0.jpg";
		
		s.link = "http://www.idxre.com/idx/detail.cfm?cid=3237&pid=4007874&bid=49"; 
		
		s.text = "<div class='ihfslidestext' style='font-size:16px;'>0 REINHARDT COLLEGE PKWY<br /> WALESKA, GA 30183<br /><b> $153,000 </b><br /></div>";
		SLIDES.add_slide(s);
		//s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
		
		s = new slide();
		s.src = "http://pix.idxre.com/pix/GAFMLS/main/0/3955492_0.jpg";
		
		s.link = "http://www.idxre.com/idx/detail.cfm?cid=3237&pid=3955492&bid=49"; 
		
		s.text = "<div class='ihfslidestext' style='font-size:16px;'>0 EDWARDS RD<br /> CEDARTOWN, GA 30125<br /><b> $152,100 </b><br /></div>";
		SLIDES.add_slide(s);
		//s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
		
		s = new slide();
		s.src = "http://pix.idxre.com/pix/GAFMLS/main/0/3203859_0.jpg";
		
		s.link = "http://www.idxre.com/idx/detail.cfm?cid=3237&pid=3203859&bid=49"; 
		
		s.text = "<div class='ihfslidestext' style='font-size:16px;'>12 SASSAFRAS MOUNTAIN<br /> ELLIJAY, GA 30536<br /><b> $150,500 </b><br /></div>";
		SLIDES.add_slide(s);
		//s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
		
		s = new slide();
		s.src = "http://pix.idxre.com/pix/GAFMLS/main/0/3950326_0.jpg";
		
		s.link = "http://www.idxre.com/idx/detail.cfm?cid=3237&pid=3950326&bid=49"; 
		
		s.text = "<div class='ihfslidestext' style='font-size:16px;'>0 GARLAND MTN TRAIL TRACT 6<br /> WALESKA, GA 30183<br /><b> $150,000 </b><br /></div>";
		SLIDES.add_slide(s);
		//s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
		
		s = new slide();
		s.src = "http://pix.idxre.com/pix/GAFMLS/main/0/3203694_0.jpg";
		
		s.link = "http://www.idxre.com/idx/detail.cfm?cid=3237&pid=3203694&bid=49"; 
		
		s.text = "<div class='ihfslidestext' style='font-size:16px;'>8 SASSAFRAS MOUNTAIN<br /> ELLIJAY, GA 30536<br /><b> $149,800 </b><br /></div>";
		SLIDES.add_slide(s);
		//s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
		
		s = new slide();
		s.src = "http://pix.idxre.com/pix/GAFMLS/main/0/3203872_0.jpg";
		
		s.link = "http://www.idxre.com/idx/detail.cfm?cid=3237&pid=3203872&bid=49"; 
		
		s.text = "<div class='ihfslidestext' style='font-size:16px;'>14 SASSAFRAS MOUNTAIN<br /> ELLIJAY, GA 30536<br /><b> $149,800 </b><br /></div>";
		SLIDES.add_slide(s);
		//s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
		
		s = new slide();
		s.src = "http://pix.idxre.com/pix/GAFMLS/main/0/3203674_0.jpg";
		
		s.link = "http://www.idxre.com/idx/detail.cfm?cid=3237&pid=3203674&bid=49"; 
		
		s.text = "<div class='ihfslidestext' style='font-size:16px;'>7 SASSAFRAS MOUNTAIN<br /> ELLIJAY, GA 30536<br /><b> $147,000 </b><br /></div>";
		SLIDES.add_slide(s);
		//s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
		
		s = new slide();
		s.src = "http://pix.idxre.com/pix/GAFMLS/main/0/3203720_0.jpg";
		
		s.link = "http://www.idxre.com/idx/detail.cfm?cid=3237&pid=3203720&bid=49"; 
		
		s.text = "<div class='ihfslidestext' style='font-size:16px;'>10 SASSAFRAS MOUNTAIN<br /> ELLIJAY, GA 30536<br /><b> $147,000 </b><br /></div>";
		SLIDES.add_slide(s);
		//s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
		
		s = new slide();
		s.src = "http://pix.idxre.com/pix/GAFMLS/main/0/3204126_0.jpg";
		
		s.link = "http://www.idxre.com/idx/detail.cfm?cid=3237&pid=3204126&bid=49"; 
		
		s.text = "<div class='ihfslidestext' style='font-size:16px;'>39 SASSAFRAS MOUNTAIN<br /> ELLIJAY, GA 30536<br /><b> $146,300 </b><br /></div>";
		SLIDES.add_slide(s);
		//s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
		
		s = new slide();
		s.src = "http://pix.idxre.com/pix/GAFMLS/main/0/3203729_0.jpg";
		
		s.link = "http://www.idxre.com/idx/detail.cfm?cid=3237&pid=3203729&bid=49"; 
		
		s.text = "<div class='ihfslidestext' style='font-size:16px;'>11 SASSAFRAS MOUNTAIN<br /> ELLIJAY, GA 30536<br /><b> $140,000 </b><br /></div>";
		SLIDES.add_slide(s);
		//s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
		
		s = new slide();
		s.src = "http://pix.idxre.com/pix/GAFMLS/main/0/3203896_0.jpg";
		
		s.link = "http://www.idxre.com/idx/detail.cfm?cid=3237&pid=3203896&bid=49"; 
		
		s.text = "<div class='ihfslidestext' style='font-size:16px;'>16 SASSAFRAS MOUNTAIN<br /> ELLIJAY, GA 30536<br /><b> $136,500 </b><br /></div>";
		SLIDES.add_slide(s);
		//s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
		
		s = new slide();
		s.src = "http://pix.idxre.com/pix/GAFMLS/main/0/3203918_0.jpg";
		
		s.link = "http://www.idxre.com/idx/detail.cfm?cid=3237&pid=3203918&bid=49"; 
		
		s.text = "<div class='ihfslidestext' style='font-size:16px;'>19 SASSAFRAS MOUNTAIN<br /> ELLIJAY, GA 30536<br /><b> $130,200 </b><br /></div>";
		SLIDES.add_slide(s);
		//s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
		
		s = new slide();
		s.src = "http://pix.idxre.com/pix/GAFMLS/main/0/3203925_0.jpg";
		
		s.link = "http://www.idxre.com/idx/detail.cfm?cid=3237&pid=3203925&bid=49"; 
		
		s.text = "<div class='ihfslidestext' style='font-size:16px;'>20 SASSAFRAS MOUNTAIN<br /> ELLIJAY, GA 30536<br /><b> $130,200 </b><br /></div>";
		SLIDES.add_slide(s);
		//s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
		
		s = new slide();
		s.src = "http://pix.idxre.com/pix/GAFMLS/main/0/3203903_0.jpg";
		
		s.link = "http://www.idxre.com/idx/detail.cfm?cid=3237&pid=3203903&bid=49"; 
		
		s.text = "<div class='ihfslidestext' style='font-size:16px;'>18 SASSAFRAS MOUNTAIN<br /> ELLIJAY, GA 30536<br /><b> $126,000 </b><br /></div>";
		SLIDES.add_slide(s);
		//s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
		
		s = new slide();
		s.src = "http://pix.idxre.com/pix/GAFMLS/main/0/3203625_0.jpg";
		
		s.link = "http://www.idxre.com/idx/detail.cfm?cid=3237&pid=3203625&bid=49"; 
		
		s.text = "<div class='ihfslidestext' style='font-size:16px;'>5 SASSAFRAS MOUNTAIN<br /> ELLIJAY, GA 30536<br /><b> $115,500 </b><br /></div>";
		SLIDES.add_slide(s);
		//s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
		
		s = new slide();
		s.src = "http://pix.idxre.com/pix/GAFMLS/main/0/3204014_0.jpg";
		
		s.link = "http://www.idxre.com/idx/detail.cfm?cid=3237&pid=3204014&bid=49"; 
		
		s.text = "<div class='ihfslidestext' style='font-size:16px;'>30 SASSAFRAS MOUNTAIN<br /> ELLIJAY, GA 30536<br /><b> $114,800 </b><br /></div>";
		SLIDES.add_slide(s);
		//s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
		
		s = new slide();
		s.src = "http://pix.idxre.com/pix/GAFMLS/main/0/3204011_0.jpg";
		
		s.link = "http://www.idxre.com/idx/detail.cfm?cid=3237&pid=3204011&bid=49"; 
		
		s.text = "<div class='ihfslidestext' style='font-size:16px;'>29 SASSAFRAS MOUNTAIN<br /> ELLIJAY, GA 30536<br /><b> $113,400 </b><br /></div>";
		SLIDES.add_slide(s);
		//s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
		
		s = new slide();
		s.src = "http://pix.idxre.com/pix/GAFMLS/main/0/3909601_0.jpg";
		
		s.link = "http://www.idxre.com/idx/detail.cfm?cid=3237&pid=3909601&bid=49"; 
		
		s.text = "<div class='ihfslidestext' style='font-size:16px;'>924 ACE CT<br /> RANGER, GA 30734<br /><b> $110,000 </b><br /></div>";
		SLIDES.add_slide(s);
		//s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
		
		s = new slide();
		s.src = "http://pix.idxre.com/pix/GAFMLS/main/0/3203865_0.jpg";
		
		s.link = "http://www.idxre.com/idx/detail.cfm?cid=3237&pid=3203865&bid=49"; 
		
		s.text = "<div class='ihfslidestext' style='font-size:16px;'>13 SASSAFRAS MOUNTAIN<br /> ELLIJAY, GA 30536<br /><b> $105,000 </b><br /></div>";
		SLIDES.add_slide(s);
		//s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
		
		s = new slide();
		s.src = "http://pix.idxre.com/pix/GAFMLS/main/0/3203951_0.jpg";
		
		s.link = "http://www.idxre.com/idx/detail.cfm?cid=3237&pid=3203951&bid=49"; 
		
		s.text = "<div class='ihfslidestext' style='font-size:16px;'>22 SASSAFRAS MOUNTAIN<br /> ELLIJAY, GA 30536<br /><b> $105,000 </b><br /></div>";
		SLIDES.add_slide(s);
		//s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
		
		s = new slide();
		s.src = "http://pix.idxre.com/pix/GAFMLS/main/0/3204091_0.jpg";
		
		s.link = "http://www.idxre.com/idx/detail.cfm?cid=3237&pid=3204091&bid=49"; 
		
		s.text = "<div class='ihfslidestext' style='font-size:16px;'>37 SASSAFRAS MOUNTAIN<br /> ELLIJAY, GA 30536<br /><b> $105,000 </b><br /></div>";
		SLIDES.add_slide(s);
		//s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
		
		s = new slide();
		s.src = "http://pix.idxre.com/pix/GAFMLS/main/0/3204048_0.jpg";
		
		s.link = "http://www.idxre.com/idx/detail.cfm?cid=3237&pid=3204048&bid=49"; 
		
		s.text = "<div class='ihfslidestext' style='font-size:16px;'>35 SASSAFRAS MOUNTAIN<br /> ELLIJAY, GA 30536<br /><b> $103,600 </b><br /></div>";
		SLIDES.add_slide(s);
		//s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
		
		s = new slide();
		s.src = "http://pix.idxre.com/pix/GAFMLS/main/0/3907328_0.jpg";
		
		s.link = "http://www.idxre.com/idx/detail.cfm?cid=3237&pid=3907328&bid=49"; 
		
		s.text = "<div class='ihfslidestext' style='font-size:16px;'>0 GARLAND MTN TRAIL TRACT 5<br /> WALESKA, GA 30183<br /><b> $99,000 </b><br /></div>";
		SLIDES.add_slide(s);
		//s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
		
		s = new slide();
		s.src = "http://pix.idxre.com/pix/GAFMLS/main/0/3950332_0.jpg";
		
		s.link = "http://www.idxre.com/idx/detail.cfm?cid=3237&pid=3950332&bid=49"; 
		
		s.text = "<div class='ihfslidestext' style='font-size:16px;'>0 GARLAND MTN TRAIL TRACT 1<br /> WALESKA, GA 30183<br /><b> $99,000 </b><br /></div>";
		SLIDES.add_slide(s);
		//s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
		
		s = new slide();
		s.src = "http://pix.idxre.com/pix/GAFMLS/main/0/3203608_0.jpg";
		
		s.link = "http://www.idxre.com/idx/detail.cfm?cid=3237&pid=3203608&bid=49"; 
		
		s.text = "<div class='ihfslidestext' style='font-size:16px;'>4 SASSAFRAS MOUNTAIN<br /> ELLIJAY, GA 30536<br /><b> $95,200 </b><br /></div>";
		SLIDES.add_slide(s);
		//s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
		
		s = new slide();
		s.src = "http://pix.idxre.com/pix/GAFMLS/main/0/3975517_0.jpg";
		
		s.link = "http://www.idxre.com/idx/detail.cfm?cid=3237&pid=3975517&bid=49"; 
		
		s.text = "<div class='ihfslidestext' style='font-size:16px;'>0 CORSON TRL<br /> TAYLORSVILLE, GA 30178<br /><b> $95,000 </b><br /></div>";
		SLIDES.add_slide(s);
		//s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
		
		s = new slide();
		s.src = "http://pix.idxre.com/pix/GAFMLS/main/0/3203601_0.jpg";
		
		s.link = "http://www.idxre.com/idx/detail.cfm?cid=3237&pid=3203601&bid=49"; 
		
		s.text = "<div class='ihfslidestext' style='font-size:16px;'>3 SASSAFRAS MOUNTAIN<br /> ELLIJAY, GA 30536<br /><b> $92,400 </b><br /></div>";
		SLIDES.add_slide(s);
		//s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
		
		s = new slide();
		s.src = "http://pix.idxre.com/pix/GAFMLS/main/0/3204113_0.jpg";
		
		s.link = "http://www.idxre.com/idx/detail.cfm?cid=3237&pid=3204113&bid=49"; 
		
		s.text = "<div class='ihfslidestext' style='font-size:16px;'>38 SASSAFRAS MOUNTAIN<br /> ELLIJAY, GA 30536<br /><b> $92,400 </b><br /></div>";
		SLIDES.add_slide(s);
		//s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
		
		s = new slide();
		s.src = "http://pix.idxre.com/pix/GAFMLS/main/0/3204141_0.jpg";
		
		s.link = "http://www.idxre.com/idx/detail.cfm?cid=3237&pid=3204141&bid=49"; 
		
		s.text = "<div class='ihfslidestext' style='font-size:16px;'>42 SASSAFRAS MOUNTAIN<br /> ELLIJAY, GA 30536<br /><b> $90,300 </b><br /></div>";
		SLIDES.add_slide(s);
		//s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
		
		s = new slide();
		s.src = "http://pix.idxre.com/pix/GAFMLS/main/0/3908964_0.jpg";
		
		s.link = "http://www.idxre.com/idx/detail.cfm?cid=3237&pid=3908964&bid=49"; 
		
		s.text = "<div class='ihfslidestext' style='font-size:16px;'>0 GARLAND MTN TRAIL TRACT 4<br /> WALESKA, GA 30183<br /><b> $89,000 </b><br /></div>";
		SLIDES.add_slide(s);
		//s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
		
		s = new slide();
		s.src = "http://pix.idxre.com/pix/GAFMLS/main/0/3203525_0.jpg";
		
		s.link = "http://www.idxre.com/idx/detail.cfm?cid=3237&pid=3203525&bid=49"; 
		
		s.text = "<div class='ihfslidestext' style='font-size:16px;'>2 SASSAFRAS MOUNTAIN<br /> ELLIJAY, GA 30536<br /><b> $88,200 </b><br /></div>";
		SLIDES.add_slide(s);
		//s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
		
		s = new slide();
		s.src = "http://pix.idxre.com/pix/GAFMLS/main/0/3204129_0.jpg";
		
		s.link = "http://www.idxre.com/idx/detail.cfm?cid=3237&pid=3204129&bid=49"; 
		
		s.text = "<div class='ihfslidestext' style='font-size:16px;'>40 SASSAFRAS MOUNTAIN<br /> ELLIJAY, GA 30536<br /><b> $85,400 </b><br /></div>";
		SLIDES.add_slide(s);
		//s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
		
		s = new slide();
		s.src = "http://pix.idxre.com/pix/GAFMLS/main/0/3204032_0.jpg";
		
		s.link = "http://www.idxre.com/idx/detail.cfm?cid=3237&pid=3204032&bid=49"; 
		
		s.text = "<div class='ihfslidestext' style='font-size:16px;'>32 SASSAFRAS MOUNTAIN<br /> ELLIJAY, GA 30536<br /><b> $78,400 </b><br /></div>";
		SLIDES.add_slide(s);
		//s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
		
		s = new slide();
		s.src = "http://pix.idxre.com/pix/GAFMLS/main/0/3860998_0.jpg";
		
		s.link = "http://www.idxre.com/idx/detail.cfm?cid=3237&pid=3860998&bid=49"; 
		
		s.text = "<div class='ihfslidestext' style='font-size:16px;'>23 RUNNING TERRACE WAY<br /> CARTERSVILLE, GA 30121<br /><b> $75,800 </b><br /></div>";
		SLIDES.add_slide(s);
		//s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
		
		s = new slide();
		s.src = "http://pix.idxre.com/pix/GAFMLS/main/0/3861053_0.jpg";
		
		s.link = "http://www.idxre.com/idx/detail.cfm?cid=3237&pid=3861053&bid=49"; 
		
		s.text = "<div class='ihfslidestext' style='font-size:16px;'>25 RUNNING TERRACE WAY<br /> CARTERSVILLE, GA 30121<br /><b> $75,800 </b><br /></div>";
		SLIDES.add_slide(s);
		//s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
		
		s = new slide();
		s.src = "http://pix.idxre.com/pix/GAFMLS/main/0/3861138_0.jpg";
		
		s.link = "http://www.idxre.com/idx/detail.cfm?cid=3237&pid=3861138&bid=49"; 
		
		s.text = "<div class='ihfslidestext' style='font-size:16px;'>12 RIDGELINE WAY<br /> CARTERSVILLE, GA 30121<br /><b> $75,800 </b><br /></div>";
		SLIDES.add_slide(s);
		//s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
		
		s = new slide();
		s.src = "http://pix.idxre.com/pix/GAFMLS/main/0/3907320_0.jpg";
		
		s.link = "http://www.idxre.com/idx/detail.cfm?cid=3237&pid=3907320&bid=49"; 
		
		s.text = "<div class='ihfslidestext' style='font-size:16px;'>0 GARLAND MTN TRAIL TRACT 2<br /> WALESKA, GA 30183<br /><b> $75,000 </b><br /></div>";
		SLIDES.add_slide(s);
		//s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
		
		s = new slide();
		s.src = "http://pix.idxre.com/pix/GAFMLS/main/0/4013636_0.jpg";
		
		s.link = "http://www.idxre.com/idx/detail.cfm?cid=3237&pid=4013636&bid=49"; 
		
		s.text = "<div class='ihfslidestext' style='font-size:16px;'>0 GARLAND MTN TRAIL TRACT 3<br /> WALESKA, GA 30183<br /><b> $75,000 </b><br /></div>";
		SLIDES.add_slide(s);
		//s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
		
		s = new slide();
		s.src = "http://pix.idxre.com/pix/GAFMLS/main/0/3865780_0.jpg";
		
		s.link = "http://www.idxre.com/idx/detail.cfm?cid=3237&pid=3865780&bid=49"; 
		
		s.text = "<div class='ihfslidestext' style='font-size:16px;'>620 CHESTATEE CREEK DR NW<br /> ACWORTH, GA 30101<br /><b> $74,000 </b><br /></div>";
		SLIDES.add_slide(s);
		//s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
		
		s = new slide();
		s.src = "http://pix.idxre.com/pix/GAFMLS/main/0/3865781_0.jpg";
		
		s.link = "http://www.idxre.com/idx/detail.cfm?cid=3237&pid=3865781&bid=49"; 
		
		s.text = "<div class='ihfslidestext' style='font-size:16px;'>651 CHESTATEE CREEK DR NW<br /> ACWORTH, GA 30101<br /><b> $74,000 </b><br /></div>";
		SLIDES.add_slide(s);
		//s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
		
		s = new slide();
		s.src = "http://pix.idxre.com/pix/GAFMLS/main/0/3865782_0.jpg";
		
		s.link = "http://www.idxre.com/idx/detail.cfm?cid=3237&pid=3865782&bid=49"; 
		
		s.text = "<div class='ihfslidestext' style='font-size:16px;'>645 CHESTATEE CREEK DR NW<br /> ACWORTH, GA 30101<br /><b> $74,000 </b><br /></div>";
		SLIDES.add_slide(s);
		//s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
		
		s = new slide();
		s.src = "http://pix.idxre.com/pix/GAFMLS/main/0/3865783_0.jpg";
		
		s.link = "http://www.idxre.com/idx/detail.cfm?cid=3237&pid=3865783&bid=49"; 
		
		s.text = "<div class='ihfslidestext' style='font-size:16px;'>639 CHESTATEE CREEK DR NW<br /> ACWORTH, GA 30101<br /><b> $74,000 </b><br /></div>";
		SLIDES.add_slide(s);
		//s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
		
		s = new slide();
		s.src = "http://pix.idxre.com/pix/GAFMLS/main/0/3204026_0.jpg";
		
		s.link = "http://www.idxre.com/idx/detail.cfm?cid=3237&pid=3204026&bid=49"; 
		
		s.text = "<div class='ihfslidestext' style='font-size:16px;'>31 SASSAFRAS MOUNTAIN<br /> ELLIJAY, GA 30536<br /><b> $73,500 </b><br /></div>";
		SLIDES.add_slide(s);
		//s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
		
		s = new slide();
		s.src = "http://pix.idxre.com/pix/GAFMLS/main/0/3204008_0.jpg";
		
		s.link = "http://www.idxre.com/idx/detail.cfm?cid=3237&pid=3204008&bid=49"; 
		
		s.text = "<div class='ihfslidestext' style='font-size:16px;'>28 SASSAFRAS MOUNTAIN<br /> ELLIJAY, GA 30536<br /><b> $70,000 </b><br /></div>";
		SLIDES.add_slide(s);
		//s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
		
		s = new slide();
		s.src = "http://pix.idxre.com/pix/GAFMLS/main/0/3203972_0.jpg";
		
		s.link = "http://www.idxre.com/idx/detail.cfm?cid=3237&pid=3203972&bid=49"; 
		
		s.text = "<div class='ihfslidestext' style='font-size:16px;'>24 SASSAFRAS MOUNTAIN<br /> ELLIJAY, GA 30536<br /><b> $69,300 </b><br /></div>";
		SLIDES.add_slide(s);
		//s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
		
		s = new slide();
		s.src = "http://pix.idxre.com/pix/GAFMLS/main/0/3861166_0.jpg";
		
		s.link = "http://www.idxre.com/idx/detail.cfm?cid=3237&pid=3861166&bid=49"; 
		
		s.text = "<div class='ihfslidestext' style='font-size:16px;'>12 PARKSIDE VIEW<br /> CARTERSVILLE, GA 30121<br /><b> $65,800 </b><br /></div>";
		SLIDES.add_slide(s);
		//s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
		
		s = new slide();
		s.src = "http://pix.idxre.com/pix/GAFMLS/main/0/3861178_0.jpg";
		
		s.link = "http://www.idxre.com/idx/detail.cfm?cid=3237&pid=3861178&bid=49"; 
		
		s.text = "<div class='ihfslidestext' style='font-size:16px;'>10 PARKSIDE VIEW<br /> CARTERSVILLE, GA 30121<br /><b> $65,800 </b><br /></div>";
		SLIDES.add_slide(s);
		//s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
		
		s = new slide();
		s.src = "http://pix.idxre.com/pix/GAFMLS/main/0/3203465_0.jpg";
		
		s.link = "http://www.idxre.com/idx/detail.cfm?cid=3237&pid=3203465&bid=49"; 
		
		s.text = "<div class='ihfslidestext' style='font-size:16px;'>1 SASSAFRAS MOUNTAIN<br /> ELLIJAY, GA 30536<br /><b> $65,100 </b><br /></div>";
		SLIDES.add_slide(s);
		//s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
		
		s = new slide();
		s.src = "http://pix.idxre.com/pix/GAFMLS/main/0/3744308_0.jpg";
		
		s.link = "http://www.idxre.com/idx/detail.cfm?cid=3237&pid=3744308&bid=49"; 
		
		s.text = "<div class='ihfslidestext' style='font-size:16px;'>0 FULLER MOUNTAIN RD<br /> FAIRMONT, GA 30139<br /><b> $64,800 </b><br /></div>";
		SLIDES.add_slide(s);
		//s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
		
		s = new slide();
		s.src = "http://pix.idxre.com/pix/GAFMLS/main/0/4018057_0.jpg";
		
		s.link = "http://www.idxre.com/idx/detail.cfm?cid=3237&pid=4018057&bid=49"; 
		
		s.text = "<div class='ihfslidestext' style='font-size:16px;'>0 CABLE ROAD TRACT 5<br /> WALESKA, GA 30183<br /><b> $59,500 </b><br /></div>";
		SLIDES.add_slide(s);
		//s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
		
		s = new slide();
		s.src = "http://pix.idxre.com/pix/GAFMLS/main/0/3882772_0.jpg";
		
		s.link = "http://www.idxre.com/idx/detail.cfm?cid=3237&pid=3882772&bid=49"; 
		
		s.text = "<div class='ihfslidestext' style='font-size:16px;'>1 COWART ROAD<br /> DAWSONVILLE, GA 30534<br /><b> $59,000 </b><br /></div>";
		SLIDES.add_slide(s);
		//s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
		
		s = new slide();
		s.src = "http://pix.idxre.com/pix/GAFMLS/main/0/3864845_0.jpg";
		
		s.link = "http://www.idxre.com/idx/detail.cfm?cid=3237&pid=3864845&bid=49"; 
		
		s.text = "<div class='ihfslidestext' style='font-size:16px;'>207 PRAIRIE LN<br /> WOODSTOCK, GA 30189<br /><b> $48,600 </b><br /></div>";
		SLIDES.add_slide(s);
		//s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
		
		s = new slide();
		s.src = "http://pix.idxre.com/pix/GAFMLS/main/0/3864751_0.jpg";
		
		s.link = "http://www.idxre.com/idx/detail.cfm?cid=3237&pid=3864751&bid=49"; 
		
		s.text = "<div class='ihfslidestext' style='font-size:16px;'>308 VALLEJO CT<br /> WOODSTOCK, GA 30188<br /><b> $47,000 </b><br /></div>";
		SLIDES.add_slide(s);
		//s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
		
		s = new slide();
		s.src = "http://pix.idxre.com/pix/GAFMLS/main/0/3864840_0.jpg";
		
		s.link = "http://www.idxre.com/idx/detail.cfm?cid=3237&pid=3864840&bid=49"; 
		
		s.text = "<div class='ihfslidestext' style='font-size:16px;'>314 RUSTY GATE PASS<br /> WOODSTOCK, GA 30189<br /><b> $45,900 </b><br /></div>";
		SLIDES.add_slide(s);
		//s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
		
		s = new slide();
		s.src = "http://pix.idxre.com/pix/GAFMLS/main/0/3864749_0.jpg";
		
		s.link = "http://www.idxre.com/idx/detail.cfm?cid=3237&pid=3864749&bid=49"; 
		
		s.text = "<div class='ihfslidestext' style='font-size:16px;'>206 FREELON DR<br /> WOODSTOCK, GA 30188<br /><b> $45,000 </b><br /></div>";
		SLIDES.add_slide(s);
		//s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
		
		s = new slide();
		s.src = "http://pix.idxre.com/pix/GAFMLS/main/0/3864842_0.jpg";
		
		s.link = "http://www.idxre.com/idx/detail.cfm?cid=3237&pid=3864842&bid=49"; 
		
		s.text = "<div class='ihfslidestext' style='font-size:16px;'>312 RUSTY GATE PASS<br /> WOODSTOCK, GA 30189<br /><b> $43,200 </b><br /></div>";
		SLIDES.add_slide(s);
		//s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
		
		s = new slide();
		s.src = "http://pix.idxre.com/pix/GAFMLS/main/0/3864746_0.jpg";
		
		s.link = "http://www.idxre.com/idx/detail.cfm?cid=3237&pid=3864746&bid=49"; 
		
		s.text = "<div class='ihfslidestext' style='font-size:16px;'>208 FREELON DR<br /> WOODSTOCK, GA 30188<br /><b> $43,000 </b><br /></div>";
		SLIDES.add_slide(s);
		//s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
		
		s = new slide();
		s.src = "http://pix.idxre.com/pix/GAFMLS/main/0/3864841_0.jpg";
		
		s.link = "http://www.idxre.com/idx/detail.cfm?cid=3237&pid=3864841&bid=49"; 
		
		s.text = "<div class='ihfslidestext' style='font-size:16px;'>310 RUSTY GATE PASS<br /> WOODSTOCK, GA 30189<br /><b> $41,400 </b><br /></div>";
		SLIDES.add_slide(s);
		//s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
		
		s = new slide();
		s.src = "http://pix.idxre.com/pix/GAFMLS/main/0/3985262_0.jpg";
		
		s.link = "http://www.idxre.com/idx/detail.cfm?cid=3237&pid=3985262&bid=49"; 
		
		s.text = "<div class='ihfslidestext' style='font-size:16px;'>0 TOWNE LAKE HILLS SOUTH<br /> WOODSTOCK, GA 30189<br /><b> $1,200,000 </b><br /></div>";
		SLIDES.add_slide(s);
		//s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
		
		s = new slide();
		s.src = "http://pix.idxre.com/pix/clientPhotos/0_2109350_IMG_0255.jpg";
		
		 s.link = "http://www.idxre.com/idx/cpropertydetail.cfm?cid=3237&cpid=2109350&bid=0"; 
		
		s.text = "<div class='ihfslidestext' style='font-size:16px;'>HOWELL BRIDGE ROAD<br /> BALL GROUND, GA 30107<br /><b> $950,000 </b><br /></div>";
		SLIDES.add_slide(s);
		//s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
		
		s = new slide();
		s.src = "http://pix.idxre.com/pix/clientPhotos/0_2109351_IMG_0259.jpg";
		
		 s.link = "http://www.idxre.com/idx/cpropertydetail.cfm?cid=3237&cpid=2109351&bid=0"; 
		
		s.text = "<div class='ihfslidestext' style='font-size:16px;'>HOWELL BRIDGE ROAD<br /> BALL GROUND, GA 30107<br /><b> $950,000 </b><br /></div>";
		SLIDES.add_slide(s);
		//s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
		
		s = new slide();
		s.src = "http://pix.idxre.com/pix/clientPhotos/0_1754332_HPIM3196.JPG";
		
		 s.link = "http://www.idxre.com/idx/cpropertydetail.cfm?cid=3237&cpid=1754332&bid=0"; 
		
		s.text = "<div class='ihfslidestext' style='font-size:16px;'>CREEKSTONE RIDGE<br /> WOODSTOCK, GA 30188<br /><b> $425,000 </b><br /></div>";
		SLIDES.add_slide(s);
		//s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
		
		s = new slide();
		s.src = "http://pix.idxre.com/pix/clientPhotos/0_1756156_Building_Front.JPG";
		
		 s.link = "http://www.idxre.com/idx/cpropertydetail.cfm?cid=3237&cpid=1756156&bid=0"; 
		
		s.text = "<div class='ihfslidestext' style='font-size:16px;'>111 VILLAGE CENTRE WEST<br /> WOODSTOCK, GA 30188<br /><b> $423,000 </b><br /></div>";
		SLIDES.add_slide(s);
		//s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
		
		s = new slide();
		s.src = "http://pix.idxre.com/pix/GAFMLS/main/0/3989854_0.jpg";
		
		s.link = "http://www.idxre.com/idx/detail.cfm?cid=3237&pid=3989854&bid=49"; 
		
		s.text = "<div class='ihfslidestext' style='font-size:16px;'>0 PILGRIM MILL RD<br /> CUMMING, GA 30041<br /><b> $399,000 </b><br /></div>";
		SLIDES.add_slide(s);
		//s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
		
		s = new slide();
		s.src = "http://pix.idxre.com/pix/GAFMLS/main/0/3984862_0.jpg";
		
		s.link = "http://www.idxre.com/idx/detail.cfm?cid=3237&pid=3984862&bid=49"; 
		
		s.text = "<div class='ihfslidestext' style='font-size:16px;'>3231 S CHEROKEE LN<br /> WOODSTOCK, GA 30188<br /><b> $375,000 </b><br /></div>";
		SLIDES.add_slide(s);
		//s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
		
		s = new slide();
		s.src = "http://pix.idxre.com/pix/clientPhotos/0_1961036_river_park_condo_1.jpg";
		
		 s.link = "http://www.idxre.com/idx/cpropertydetail.cfm?cid=3237&cpid=1961036&bid=0"; 
		
		s.text = "<div class='ihfslidestext' style='font-size:16px;'>217 &amp; 219 RIVER PARK NORTH<br /> WOODSTOCK, GA 30188<br /><b> $260,000 </b><br /></div>";
		SLIDES.add_slide(s);
		//s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
		
		s = new slide();
		s.src = "http://pix.idxre.com/pix/clientPhotos/0_1756157_Close_up_Building1.JPG";
		
		 s.link = "http://www.idxre.com/idx/cpropertydetail.cfm?cid=3237&cpid=1756157&bid=0"; 
		
		s.text = "<div class='ihfslidestext' style='font-size:16px;'>111 VILLAGE CENTRE WEST SUITE 200<br /> WOODSTOCK, GA 30188<br /><b> $215,000 </b><br /></div>";
		SLIDES.add_slide(s);
		//s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
		
		s = new slide();
		s.src = "http://pix.idxre.com/pix/clientPhotos/0_1756144_Jun_02_2008_-_VID00031_41.jpg";
		
		 s.link = "http://www.idxre.com/idx/cpropertydetail.cfm?cid=3237&cpid=1756144&bid=0"; 
		
		s.text = "<div class='ihfslidestext' style='font-size:16px;'>3205  S. CHEROKEE LN. SUITE 1120<br /> WOODSTOCK, GA 30188<br /><b> $146,900 </b><br /></div>";
		SLIDES.add_slide(s);
		//s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
		
		s = new slide();
		s.src = "http://pix.idxre.com/pix/clientPhotos/0_1754339_HPIM3196.JPG";
		
		 s.link = "http://www.idxre.com/idx/cpropertydetail.cfm?cid=3237&cpid=1754339&bid=0"; 
		
		s.text = "<div class='ihfslidestext' style='font-size:16px;'>234 CREEKSTONE RIDGE<br /> WOODSTOCK, GA 30188<br /><b> $139,500 </b><br /></div>";
		SLIDES.add_slide(s);
		//s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
		
		s = new slide();
		s.src = "http://pix.idxre.com/pix/clientPhotos/0_1753643_Warehouse_003.jpg";
		
		 s.link = "http://www.idxre.com/idx/cpropertydetail.cfm?cid=3237&cpid=1753643&bid=0"; 
		
		s.text = "<div class='ihfslidestext' style='font-size:16px;'>9876 MAIN STREET<br /> WOODSTOCK, GA 30188<br /><b> $135,000 </b><br /></div>";
		SLIDES.add_slide(s);
		//s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
		
		s = new slide();
		s.src = "http://pix.idxre.com/pix/clientPhotos/0_1961040_river_park_condo_11.jpg";
		
		 s.link = "http://www.idxre.com/idx/cpropertydetail.cfm?cid=3237&cpid=1961040&bid=0"; 
		
		s.text = "<div class='ihfslidestext' style='font-size:16px;'>219 RIVER PARK NORTH<br /> WOODSTOCK, GA 30188<br /><b> $130,000 </b><br /></div>";
		SLIDES.add_slide(s);
		//s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
		
		s = new slide();
		s.src = "http://pix.idxre.com/pix/clientPhotos/0_1754341_Jun_02_2008_-_VID00031_4.jpg";
		
		 s.link = "http://www.idxre.com/idx/cpropertydetail.cfm?cid=3237&cpid=1754341&bid=0"; 
		
		s.text = "<div class='ihfslidestext' style='font-size:16px;'>3217 S. CHEROKEE LN. SUITE 720<br /> WOODSTOCK, GA 30188<br /><b> $129,220 </b><br /></div>";
		SLIDES.add_slide(s);
		//s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
		
		s = new slide();
		s.src = "http://pix.idxre.com/pix/clientPhotos/0_1810225_950Wstone_001.jpg";
		
		 s.link = "http://www.idxre.com/idx/cpropertydetail.cfm?cid=3237&cpid=1810225&bid=0"; 
		
		s.text = "<div class='ihfslidestext' style='font-size:16px;'>99 WEATHERSTONE DR. SUITE 950<br /> WOODSTOCK, GA 30188<br /><b> $127,500 </b><br /></div>";
		SLIDES.add_slide(s);
		//s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
		
		s = new slide();
		s.src = "http://pix.idxre.com/pix/GAFMLS/main/0/3985330_0.jpg";
		
		s.link = "http://www.idxre.com/idx/detail.cfm?cid=3237&pid=3985330&bid=49"; 
		
		s.text = "<div class='ihfslidestext' style='font-size:16px;'>3221 S CHEROKEE LN<br /> WOODSTOCK, GA 30188<br /><b> $100,000 </b><br /></div>";
		SLIDES.add_slide(s);
		//s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
		
		s = new slide();
		s.src = "http://pix.idxre.com/pix/clientPhotos/0_1762276_0C2E341D-40D9-4A9F-A1B5-1FC5505A74EA.jpg";
		
		 s.link = "http://www.idxre.com/idx/cpropertydetail.cfm?cid=3237&cpid=1762276&bid=0"; 
		
		s.text = "<div class='ihfslidestext' style='font-size:16px;'>9876 MAIN ST. SUITE 215<br /> WOODSTOCK, GA 30188<br /><b> </b><br /></div>";
		SLIDES.add_slide(s);
		//s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
		
		s = new slide();
		s.src = "http://pix.idxre.com/pix/clientPhotos/0_1762393_Picture_015.jpg";
		
		 s.link = "http://www.idxre.com/idx/cpropertydetail.cfm?cid=3237&cpid=1762393&bid=0"; 
		
		s.text = "<div class='ihfslidestext' style='font-size:16px;'>7745 MAIN ST.<br /> WOODSTOCK, GA 30188<br /><b> </b><br /></div>";
		SLIDES.add_slide(s);
		//s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
		
		s = new slide();
		s.src = "http://pix.idxre.com/pix/clientPhotos/0_1762404_Ste_301_7.jpg";
		
		 s.link = "http://www.idxre.com/idx/cpropertydetail.cfm?cid=3237&cpid=1762404&bid=0"; 
		
		s.text = "<div class='ihfslidestext' style='font-size:16px;'>145 TOWNE LAKE PKWY SUITE 301<br /> WOODSTOCK, GA 30188<br /><b> </b><br /></div>";
		SLIDES.add_slide(s);
		//s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
		
		s = new slide();
		s.src = "http://pix.idxre.com/pix/clientPhotos/0_1762548_IMG_4635.JPG";
		
		 s.link = "http://www.idxre.com/idx/cpropertydetail.cfm?cid=3237&cpid=1762548&bid=0"; 
		
		s.text = "<div class='ihfslidestext' style='font-size:16px;'>3237 S. CHEROKEE LN. SUITE 1110<br /> WOODSTOCK, GA 30188<br /><b> </b><br /></div>";
		SLIDES.add_slide(s);
		//s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
		
		s = new slide();
		s.src = "http://pix.idxre.com/pix/clientPhotos/0_1762581_HPIM3196.JPG";
		
		 s.link = "http://www.idxre.com/idx/cpropertydetail.cfm?cid=3237&cpid=1762581&bid=0"; 
		
		s.text = "<div class='ihfslidestext' style='font-size:16px;'>236 CREEKSTONE RIDGE SUITE 236<br /> WOODSTOCK, GA 30188<br /><b> </b><br /></div>";
		SLIDES.add_slide(s);
		//s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
		
		s = new slide();
		s.src = "http://pix.idxre.com/pix/clientPhotos/0_1762588_Picture_193.jpg";
		
		 s.link = "http://www.idxre.com/idx/cpropertydetail.cfm?cid=3237&cpid=1762588&bid=0"; 
		
		s.text = "<div class='ihfslidestext' style='font-size:16px;'>145 TOWNE LAKE PKWY SUITE 303<br /> WOODSTOCK, GA 30188<br /><b> </b><br /></div>";
		SLIDES.add_slide(s);
		//s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
		
		s = new slide();
		s.src = "http://pix.idxre.com/pix/clientPhotos/0_1762592_Jun_02_2008_-_VID00031_4.jpg";
		
		 s.link = "http://www.idxre.com/idx/cpropertydetail.cfm?cid=3237&cpid=1762592&bid=0"; 
		
		s.text = "<div class='ihfslidestext' style='font-size:16px;'>3205 S. CHEROKEE LN. SUITE 1120<br /> WOODSTOCK, GA 30188<br /><b> </b><br /></div>";
		SLIDES.add_slide(s);
		//s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
		
		s = new slide();
		s.src = "http://pix.idxre.com/pix/clientPhotos/0_2109411_Front_and_Rear_Elevation1.JPG";
		
		 s.link = "http://www.idxre.com/idx/cpropertydetail.cfm?cid=3237&cpid=2109411&bid=0"; 
		
		s.text = "<div class='ihfslidestext' style='font-size:16px;'>HOWELL BRIDGE RD &amp; I-575<br /> BALL GROUND, GA 30107<br /><b> </b><br /></div>";
		SLIDES.add_slide(s);
		//s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
		
		s = new slide();
		s.src = "http://pix.idxre.com/pix/GAFMLS/main/0/4007950_0.jpg";
		
		s.link = "http://www.idxre.com/idx/detail.cfm?cid=3237&pid=4007950&bid=49"; 
		
		s.text = "<div class='ihfslidestext' style='font-size:16px;'>5041 TRICKUM RD NE<br /> MARIETTA, GA 30066<br /><b> $  900 </b><br />2 Beds - 1 Baths</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><a id="SLIDESLINK" href="javascript:SLIDES.hotlink()" title="Click to view property info"><div id="SLIDESTEXT"></div></a></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><a id="SLIDESLINK" href="javascript:SLIDES.hotlink()" title="Click to view property info"><div id="SLIDESTEXT"></div></a></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><a id="SLIDESLINK" href="javascript:SLIDES.hotlink()" title="Click to view property info"><div id="SLIDESTEXT"></div></a></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
	
		}
		
	}

