(function($) {

	$.fn.useBetterBrowser = function(options){
	  
		// default configuration properties
		var defaults = {	
			notifText:		"Tato stránka může být ještě lepší. Zkuste si ji prohlédnout v nejnovějším Firefoxu, Google Chrome či Safari."
		}; 
		
		var options = $.extend(defaults, options);  
		var obj = $(this); 	
		
		var notifHolder = $(document.createElement("div")).attr("id", "notification");  
		notifHolder.css({
			"display":"none",
			"position":"absolute",
			"top":"20px",
			"left":"20px",
			"z-index":"200",
			"color":"white", 
			"background":"black",
			"width":"450px",
			"height":"50px"
		});
		notifHolder.text(options.notifText);
					
		obj.append(notifHolder);
		notifHolder.fadeIn("normal");
		
				
	
	  
	};

})(jQuery);
