//-- updated for jQuery 1.4

	page.tinkerage = function () {
    	var _ = {};
		
		var init = function () {
        	render.init();
		};
        
        var render = {
        	init: function () {
            	config.$content.empty().append( render.page() );
            },
            page: function () {
            	return $('<div />', { id: 'tinkerage' })
                	.append( render.heading() )
                    .append( render.intro() );
            },
            heading: function () {
            	return $('<div />', { 'class': 'heading', text: 'Tinkerage' });
            },
            intro: function () {
            	return $('<div />')
                	.append( $('<p />', { text: 'A lot of times, I\'ll have an idea that I\'d like to try out that doesn\'t really constitute a full project.  This will be the home for such mini-projects.  These will include my incomplete projects, ideas, or other such poppycock that doesn\'t warrant a section in my portfolio.' }) )
                    .append( $('<p />', { text: 'Check back soon for more nifty JavaScript and obscure phrases than you can shake a stick at!' }) );
            },
            works: function () {
            	var ret = $('<div />', { id: 'pages_container' });
                
                for ( var cv = 0; cv < config.works.length; cv++ ) {
                	ret.append( render.work( config.works[cv] ) );
                }
                
                return ret;
            },
            work: function (work) {
            	return $('<div />', { 'class': 'tinkering' })
                	.append( $('<p />', { text: work.desc }) )
                    .append( $('<a />', { href: 'http://tinkerage.artistrytrend.com/' + p.id, text: p.name }) );
            }
		};
        
        var config = {
        	$content: $('#content'),
        	works: [
            	{
					name: 'slider',
					id: 'slider_effect',
					desc: 'howdy',
					height: 600,
					width: 550
				},
				{
					name: 'more useful slider',
					id: 'slider_effect_2',
					desc: 'howdy',
					height: 150,
					width: 800
				}
			]
		};
		
		init();
        
        return _;
	};