/**
 * Namespaced object. Encapsulating private methods, exposing these 
 * as public via an object proxy. 
 *
 * @author 		Zone
 * @email		info@zonecontent.com
 * @url 			http://www.zonecontent.com/
 * @copyright 	Copyright (c) 2009, zonecontent.com. All rights reserved.
 * @version		1.0
 */
var btonvision = window.btonvision = function ( $ ) {
	
	function getPublicMethods () {
		
	}
	// Private methods

	function moveSubcategories() {

        $('#subcategory_panels').each(function(){
            $(this).prependTo($('#new_subcategories_location'));
        }); 
        
    }
	
	return {
		// Public variables / methods
		"init" : function () {
			
			// Call init methods

        },

        "moveSubcategories": moveSubcategories
		
	};
	
}( jQuery );