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

