	$(function()
	{
		$("ul.nav").superfish({
			animation : { opacity:"show", height:"show" }
		});
	});
	
	$(function()
	{
		$('#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);
        });
	});
