jQuery.noConflict();
jQuery(function(){
		jQuery('ul.menu').superfish();				
})


jQuery(document).ready(function(){
					
	if(jQuery("#registerFrm").length > 0)
	{
		jQuery("#pay").click(function(){
		
		if(jQuery("#program_seats").val() == "0")
		{
			alert("Seats not available in this program at present.");
			return false;
		}
		else
		{
			jQuery("#registerFrm").validate();
		}
									  
		});
		
	}
						   
						   
});
