

jQuery(function ($) {
	$('.terms_popup').click(function (e) {
	 //  alert('hello');
		$('#terms_of_use').modal();
		
		  return false;
	});
    
    
    $('.privacy_popup').click(function (e) {
	 //  alert('hello');
		$('#privacy_policy').modal();
		
		  return false;
	});
    
  
});
