// JavaScript Document
$(document).ready(function() {
	$(".celebGame").bind("submit", function() {									
		gameid = $(this).attr("gameid");		
		if($(this).children("#celebrity").val() == 0) {
			$('#game'+gameid+' #error'+gameid).fadeIn();
			return false;	
		}
		return true;	
	});
});