/* Author: 

*/


$(function() {

	$('#gallery a').lightBox(); // Select all links in object with gallery ID

});






$(document).ready(function() {
	var ajax_form = $( "#submitform" ).validVal();
	$( "#submitform .gogo" ).click(function( event ) {
		event.preventDefault();

		form_data = ajax_form.submitform();
		if ( form_data ) {
			$.ajax({
				type: "POST",
				url: "/submit.php",
				data: form_data,
				success: function( msg ) {
					 $("#result").empty().fadeIn().append( msg );
					ajax_form.resetform();
				}
			});
		}
	});
});


  $('.continue').click(function() { 

  $('.extras').show();
  $('.continue').hide();
  
  });


$(function() {

	$('#gallery a').lightBox(); // Select all links in object with gallery ID

});


$('.extras').hide();


