$(document).bind('ready', function() {

	var control = $('a.control');	
	
	control.each(function() {
		$(this).onclick = function(){
			$(this).blur();
			return false;
		}
	});	
	
	var cancel = $('#feedbackSend a.cancel');
	cancel.each(function() {
		$(this).onclick = function(){
			$(this).parent().parent().parent().removeClass('visible');
			return false;
		}
	});	
	
});


