﻿$( function() {
    $( '#section_images' ).cycle( {  
	speed:  'slow', 
	timeout: 6500,
	next:   '#next', 
	prev:   '#prev'
    } );
} );

function submitForm() {
    $.ajax( { 
	type: 'POST',
	url: '/ads/submitSectionSurvey',
	data: $( '#section_survey_form' ).serialize(),
	success: function( html, textStatus ) {
	    $( '#section_survey_wrap' ).html( html );
	}
    } );
    $( '#section_survey_wrap' ).html( '<div style=\"padding: 30px; text-align: center;\"><img src=\"/images/loading.gif\" /></div>' );
}
