/**
 * Constructor overview module, adds additiona tooltip to images-view;
 * @author Tom Cool @ FrenzyMedia B.V. - http://frenzymedia.eu
 * @class overview object
 * @constructor
 * @param {jQuery} $ The jQuery object - to prevent conflicts with similar libraries
 */
var overview = (function ($) {

	/**
	 * Additional css-selectors are stored seperately
     * @namespace Private properties
     */
	var selectors = {},

	/**
     * @namespace Private properties and methods
     */
	priv = {};

	/**
	 * @namespace Public properties and methods
     * @scope overview
     */
	return {
		
		initiate : function () {

		}
	};

})(jQuery);

jQuery( function () { overview.initiate() });
