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

		$('#index-cycle').cycle({ 
			fx:     'fade', 
			speed:   2000,
			timeout: 5000, 
			pause:   0
		}).css('visibility','visible').show();
			
		$('#featured-property-images').cycle({ 
			fx:     'fade', 
			speed:   1000,
			timeout: 3000, 
			pause:   0
		}).css('visibility','visible').show();
		
		$('#meet-our-agents-rotation').cycle({ 
			fx:     'fade', 
			speed:   1000,
			timeout: 3000, 
			pause:   0
		});
	
		var image_width = $('#featured-property-images').width();
		
		$('#featured-property-images div').each(function() {
			$(this).width(image_width);
		}).show();
	});
