/**
 *	Flow banner window plugin.
 */
jQuery.fn.banner = function() {
	jQuery(this).css({
		'position' : 'absolute',
		'left' : Math.floor(screen.width / 2) - 300 + 'px',
		'top' : '100px'
	}).show();
	
	jQuery(window).scroll(function(){
		jQuery("#banner").animate({
			'top' : 100 + jQuery(window).scrollTop() + 'px'
		});
	});
	
	jQuery(this).find(".close img").eq(0).click(function(){
		jQuery("#banner").remove();
	});
}
