$(document).ready(function() {
	initForm();
	expand();
});

var initForm = function() {
	$(".submit").click(function (){
			$.ajax({
				url: '/videos/submit',
				type: 'POST',
				data: $('#VideoSubmitForm').serialize(),
				dataType: 'html',
				success: function(response) {
					$('#pool').append(response);
				},
				error: function(response) {
					$('#pool').html(response);
				}
			});
			return false;
	});
}

var expand = function (){
  $("#jury").click(function(){
    $("#jury_expand").toggle("slow");
	$("#trailer_expand").hide("slow");
	$("#prize_expand").hide("slow");
  });
  $("#trailer").click(function(){
    $("#trailer_expand").toggle("slow");
	$("#jury_expand").hide("slow");
	$("#prize_expand").hide("slow");	
  });
  $("#prize").click(function(){
    $("#prize_expand").toggle("slow");
	$("#trailer_expand").hide("slow");
	$("#jury_expand").hide("slow");	
  }); 
}

