$(document).ready(function(){
	showMedia = function(element){
		var id = $(element).val();
		$("#first_step").find('.hide_me').each(function(){
			this.style.display = 'none';		
		});
		if(id!="false"){
			$("#event_"+id).show();
			if(id==30) $("#special_event").show(); 
		}
	}
	checkOther = function(element){
		if($(element).val()==0) $("#hear_other").focus();
	}	
});