// JavaScript Document
<!--  initialize the slideshow when the DOM is ready -->
jQuery(document).ready(function() {
    jQuery('#slideshow').cycle({
		fx: 'fade', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
		speed: 1000,
		timeout:0
	});
	jQuery('#home-button').click(function() {
    jQuery('#slideshow').cycle(0);
	return false;
    })
	jQuery('#property-btn').click(function() {
    jQuery('#slideshow').cycle(1);
	return false;
    })
	jQuery('#community').click(function() {
    jQuery('#slideshow').cycle(2);
	return false;
    })
	jQuery('#living').click(function() {
    jQuery('#slideshow').cycle(3);
	return false;
    })
	jQuery('#profile').click(function() {
    jQuery('#slideshow').cycle(4);
	return false;
    })
	jQuery('#contact').click(function() {
    jQuery('#slideshow').cycle(5);
	return false;
    });
});


