	(function($) {
		$.fn.sound = function() {
			$(this).click(function() {
			
						
				$.ajax({
					type: 'get',
					url: $(this).attr('href'),
					data: 'js=1',
					
					success: function(r) {
						
						
					}
				}); // end ajax
				
				return false;
			}); // end click
			
				
		};
	})(jQuery);
		