	$(function()
	{
		$("ul.nav").supersubs({ 
			minWidth:    12,
			maxWidth:    27,
			extraWidth:  1
		}).superfish({
			animation : { 
				opacity:"show", 
				height:"show" 
			},
			autoArrows:  false
		});

		$('#meet-our-agents-rotation').cycle({ 
			fx:     'fade', 
			speed:   1000,
			timeout: 3000, 
			pause:   0
		});
		
		var header_images = ""
			+ "<div class='header1'></div>"
			+ "<div class='header2'></div>"
			+ "<div class='header3'></div>"
			+ "<div class='header4'></div>"
			+ "<div class='header5'></div>"
			+ "<div class='header6'></div>"
			+ "<div class='header7'></div>"
			+ "<div class='header8'></div>"
			+ "<div class='header9'></div>";
			
		$("#header_images").html(header_images)
		.cycle({
			fx:     'fade', 
			speed:   1000,
			timeout: 3000, 
			pause:   0
		}).show();

		$('#featured-property-images').hide().cycle({ 
			fx:     'fade', 
			speed:   1000,
			timeout: 3000, 
			pause:   0
		}).show();
	
		var image_width = $('#featured-property-images').width();
		
		$('#featured-property-images div').each(function() {
        	$(this).width(image_width);
        });
	});

