// 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				=	580;		// 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/badge.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	=	0;
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	=	965;
var float_siteMinHeight	=	600;

var float_useShadowbox	=	0;


// DON'T EDIT BELLOW THIS POINT UNLESS YOU KNOW WHAT YOU'RE DOING

// load shadowbox adapter, if requestes
if (float_useShadowbox==1)
{
	document.write('<link href="/scripts/floatter/shadowbox/shadowbox.css" type="text/css" rel="stylesheet" />');
	document.write('<script src="/scripts/floatter/shadowbox/shadowbox.js" language="javascript"></script>');
}
// load external file
document.write('<link href="/scripts/floatter/floatter.css" type="text/css" rel="stylesheet" />');
document.write('<script src="/scripts/floatter/floatter.js" language="javascript"></script>');