	
	$(document).ready(function(){
	
		// ! make sure you want to delete
		$('a.delete').click(function(event){
			
			var answer = confirm("Are you for sure you want to delete this event?");
			
			if (answer) {
				window.location = $(this).attr('href');
			} else {
				return false;
			}

		});
		
		
		// ! pricing pop up
		$('<div id="pricingDetail"></div>').appendTo('#main_content_location').hide();
		$('.pricing_detail').click(function(){
			$('#pricingDetail').toggle();
			return false;
		});
		$('#pricingDetail').click(function(){
			$(this).toggle();
		});
	
	
	});