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

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