// CONFIGURATION VARIABLES
var float_positionY				=	"top";		// OPTIONS: top, bottom
var float_marginY				=	0;		// 9999 = center
var float_marginFromCenterY 	=	0;			// this value will only be used if float_marginY=9999, use it to place the badge some pixels away from the vertical center 
												// positive values, will move it right
												// negative values, move the badge left from center

var float_positionX				=	"left";		// OPTIONS: left, right
var float_marginX				=	0;		// 9999 = center
var float_marginFromCenterX 	=	0;		// this value will only be used if float_marginX=9999, use it to place the badge some pixels away from the horizontal center 
												// positive values, will move it down
												// negative values, move the badge up from center

var float_type		=	"image"; 			// OPTIONS: image, text
var float_content	=	"/scripts/floatter/two-sides.gif";
var float_link		=	"http://www.twosides.info/";
var float_target	=	"_blank";

// Identify if the badge will be repositoned after a window scroll or resize
var float_fixedOnScroll	=	1;
var float_fixedOnResize	=	0;

// Define the minimun width and Height of the site
// This values will be used to calculate the badge position if the window is resized
var float_siteMinWidth	=	320;
var float_siteMinHeight	=	0;

// load external file
document.write('<script src="/scripts/floatter/floatter.js" language="javascript"></script>');