/* ---------------------------------------------------------------
	
	MAIN.JS -- FOURDIGIT JavaScript BASAE FUNCTIONS
	Copyright (c) FOURDIGIT Inc. All Rights Reserved.
		
--------------------------------------------------------------- */



jQuery.fn.extend(
	{
		flBanner: function(){
			this
				.css({ "position": "absolute" })
				.positionFixed()
				.find(".inner")
					.css({ "position": "absolute" })
					.jqDrag()
				.end()
			.end();
			return this;
		}
	}
);

function flclose () {
	$('#baka').fadeOut("fast");
}

$().ready(function() {
	$('#baka').jqDrag('.jqDrag').jqResize('.jqResize');
});