/**********************
**
**		JukeBox 1.0
**		Copyright by Thomas Foelker
**	
***********************/
(function($) { 
	
$.jukebox = {
		
		
	createOverlay: function(_parent, _overlay) 
	{
		var wHeight = $(document).height() + 'px';
		var wWidth = $(document).width() + 'px';
		_parent.overlay = $('<div>')
		.attr('id', 'jb_overlay')
		.addClass('jb_overlay')
		.css($.extend({}, {
			opacity: _overlay / 100,
			height: wHeight,
			width: wWidth,
			position: 'absolute',
			left: 0,
			top: 0,
			zIndex: 3000
		}))
		.hide()
		.appendTo('body');
	}		

		
		
}

//jQuery plugins
$.fn.extend({
	
	
});

$.widget = function(name, prototype) {
	var namespace = name.split(".")[0];
	name = name.split(".")[1];
	
};

		


$.jukebox.mouse = { 	
		_mouseInit: function() {
			var self = this;
			
		}, 
		_mouseDown: function(event) {
			
		},

		_mouseMove: function(event) { 
			
		},

		_mouseUp: function(event) { 
			
		},
		_mouseUp: function(event) {
			
				

			return false;
		}
	 
};

})(jQuery);
