$(document).ready(function() {
	$('#entry_form').tabs({ fx: { opacity: 'toggle', height: 'toggle' } });
	$('#step1, #step2').append('<p class="next"><a href="#">Next</a></p>');
	$('#step1 .next a').click(function(){
		$('#entry_form').tabs('select',1);
		return false;
	});
	$('#step2 .next a').click(function(){
		$('#entry_form').tabs('select',2);
		return false;
	});
	
	$("p.voteforme a").click(function(){
		$(this).parents("form:first").submit();
		return false;
	});
});
