(function($) {
	$.fn.extend({
		soundfx: function(options) {
			var defaults = {};
			var options = $.extend(defaults, options);
			return this.each(function() {
				var o = options;
				var isIE = navigator.appName.indexOf("MSIE") != -1;
				var flashobj = document.getElementById("soundfx");
				var speed = (isIE) ? 60 : 300;
				var hover_intent;
				var playtimer = ((o.tm) ? o.tm : 0)*1000;


				setTimeout(function() {
					flashobj.playsfx(o.fx, o.vl);
				},	playtimer);
				
			});
		}
	});
})(jQuery);
