	$(function()
	{
		$('#index-cycle').cycle({ 
			fx:     'fade', 
			speed:   2000,
			timeout: 5000, 
			pause:   0
		}).css('visibility','visible');
		
		$("ul.nav").supersubs({ 
			minWidth:    12,
			maxWidth:    27,
			extraWidth:  1
		}).superfish();

		$('#featured-property-images').hide().cycle({ 
			fx:     'fade', 
			speed:   1000,
			timeout: 3000, 
			pause:   0
		}).show().css('visibility','visible');
		
		$('#meet-our-agents-rotation').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);
        });
		
	});