$(document).ready(function() { 
	
	$.metadata.setType("attr", "validate");
	$("#tournamentForm").validate({
  		rules: {
    			form_no_players: {
      			required: true,
   			max: 1000
    			}
  		}
	});
	


	$(".floatingFooter").addClass("fixedFloat");
	$("#main").addClass("margin");


	$("img[src$='.png']").ifixpng();						   
	
	$(".floatingFootercontent").toggle();
	
	$(".revealFooter").click(function () { 
      		$(".floatingFootercontent").toggle();
    	});
});