/**
 * Notification Bar
 * 
 * (c) 2010 Jannis Nikoy
 */

(function($) {
	$(document).ready(function(){
		$('body').append('<div id="notificationbar"> </div>');
	});
	
	$.fn.extend({
		hideNotifications : function(){
			$('#notificationbar').animate({
				top : '-65'
			}, 300);
		},
		
		showNotifications : function(options){
			$('#notificationbar').html('<span>' + options.message + '</span>');
			$('#notificationbar').animate({
				top : '0'
			}, 300, function() {
				setTimeout(function(){ $(this).hideNotifications() }, options.timeout);
			});
		}
	});
})(jQuery);
