
	var Yb = {

		init : function() {

			Yb.tweaks();

		},	//	init : function()



		tweaks : function () {

			//	TWEAK CSS AND THAT

			$('#header ul li:last').css({ border : 0 });
			$('#footer ul li:last').css({ border : 0 });

			$('input').focus(function() { $(this).addClass('active'); }).blur(function() { $(this).removeClass('active'); });
			$('textarea').focus(function() { $(this).addClass('active'); }).blur(function() { $(this).removeClass('active'); });

			//	Hide stuff
			$('.hide_inner').each(function() { $(this).removeClass('hide_inner').wrapInner('<span class="hide_this"></span>');});

			//	Remove stuff
			$('.remove_this').each(function() { $(this).remove(); });

			//	FIREBUG - Load it up, load it up real good!
			if ($.isFunction(window.loadFirebugConsole))
				window.loadFirebugConsole();
//			else
//				$('<script type="text/javascript" src="http://getfirebug.com/releases/lite/1.2/firebug-lite-compressed.js"></script>').appendTo('head');

		}	//	tweaks : function ()

	};	//	var Yb = {}

	//	Set this thing on fire!
	$(function() { Yb.init(); });
