$(document).ready(function(){

	$('#resort-dropdown-social').change(function(){
	
		var resort_id 	= $(this).val();
		var type 		= $(this).attr('rel');
		
		$.post('#', { action: 'update_social', resort_id: resort_id, type: type },function(data) {
			$('#resort-feed').html(data);
		});
		
		$.post('#', { action: 'update_links', resort_id: resort_id, type: type },function(data) {
			$('#resort-links').html(data);
		});
		
	});

});
