/*****************************************************************************
It is adviced to place the sIFR JavaScript calls in this file, keeping it
separate from the `sifr.js` file. That way, you can easily swap the `sifr.js`
file for a new version, while keeping the configuration.

You must load this file *after* loading `sifr.js`.

That said, you're of course free to merge the JavaScript files. Just make sure
the copyright statement in `sifr.js` is kept intact.
*****************************************************************************/

// Make an object pointing to the location of the Flash movie on your web server.
// Try using the font name as the variable name, makes it easy to remember which
// object you're using. As an example in this file, we'll use Futura.
	var percorso = "http://www.almonature.eu/";
	var goobascript = { src: percorso + 'sIFR/goobascript.swf'
	,ratios:[8, 1.3, 11, 1.22, 12, 1.2, 18, 1.19, 21, 1.15, 22, 1.16, 24, 1.15, 33, 1.14, 44, 1.13, 50, 1.12, 51, 1.13, 74, 1.12, 75, 1.11, 76, 1.12, 80, 1.11, 82, 1.12, 1.11]
	  };
	
	var vagrounded = { src: percorso +'sIFR/vagrounded.swf'
	,ratios:[8, 1.3, 11, 1.22, 12, 1.2, 18, 1.19, 21, 1.15, 22, 1.16, 24, 1.15, 33, 1.14, 44, 1.13, 50, 1.12, 51, 1.13, 74, 1.12, 75, 1.11, 76, 1.12, 80, 1.11, 82, 1.12, 1.11]
	  };	
 
// Now you can set some configuration settings.
// See also <http://wiki.novemberborn.net/sifr3/JavaScript+Configuration>.
// One setting you probably want to use is `sIFR.useStyleCheck`. Before you do that,
// read <http://wiki.novemberborn.net/sifr3/DetectingCSSLoad>.

// sIFR.useStyleCheck = true;

// Next, activate sIFR:
sIFR.activate(goobascript,vagrounded);

// If you want, you can use multiple movies, like so:
//
//    var futura = { src: '/path/to/futura.swf' };
//    var garamond = { src '/path/to/garamond.swf' };
//    var rockwell = { src: '/path/to/rockwell.swf' };
//    
//    sIFR.activate(futura, garamond, rockwell);
//
// Remember, there must be *only one* `sIFR.activate()`!

// Now we can do the replacements. You can do as many as you like, but just
// as an example, we'll replace all `<h1>` elements with the Futura movie.
// 
// The first argument to `sIFR.replace` is the `futura` object we created earlier.
// The second argument is another object, on which you can specify a number of
// parameters or "keyword arguemnts". For the full list, see "Keyword arguments"
// under `replace(kwargs, mergeKwargs)` at 
// <http://wiki.novemberborn.net/sifr3/JavaScript+Methods>.
// 
// The first argument you see here is `selector`, which is a normal CSS selector.
// That means you can also do things like '#content h1' or 'h1.title'.
//
// The second argument determines what the Flash text looks like. The main text
// is styled via the `.sIFR-root` class. Here we've specified `background-color`
// of the entire Flash movie to be a light grey, and the `color` of the text to
// be red. Read more about styling at <http://wiki.novemberborn.net/sifr3/Styling>.

sIFR.replace(goobascript, {
  selector: '.MenuLi',
  wmode: 'transparent',
  selectable: true,
  fitExactly: false,
  forceSingleLine : false,
  css: [
		'.sIFR-root { color:#FFFFFF; text-align: left; font-size:18px; font-weight:500}'
		,'a { color: #FFFFFF;text-decoration: none; text-align: left; font-size:18px; font-weight:500 }'
        ,'a:link, a:visited, a:active { color: #FFFFFF; text-decoration: none; text-align: left; font-size:18px; font-weight:500 }'
        ,'a:hover { color: #FFFFFF; text-decoration: none; text-align: left; font-size:18px; font-weight:500 }'
		]
});

sIFR.replace(goobascript, {
  selector: '.MenuLiSelected',
  wmode: 'transparent',
  selectable: true,
  fitExactly: false,
  forceSingleLine : false,
  css: [
		'.sIFR-root { color:#f8b026; text-align: left; font-size:18px; font-weight:500}'
		,'a { color: #f8b026;text-decoration: none; text-align: left; font-size:18px; font-weight:500 }'
        ,'a:link, a:visited, a:active { color: #f8b026; text-decoration: none; text-align: left; font-size:18px; font-weight:500 }'
        ,'a:hover { color: #f8b026; text-decoration: none; text-align: left; font-size:18px; font-weight:500 }'
		]
});

sIFR.replace(goobascript, {
  selector: '.MenuLiCane',
  wmode: 'transparent',
  selectable: true,
  fitExactly: false,
  forceSingleLine : false,
  css: [
		'.sIFR-root { color:#70b33a; text-align: left; font-size:18px; font-weight:500}'
		,'a { color: #70b33a;text-decoration: none; text-align: left; font-size:18px; font-weight:500 }'
        ,'a:link, a:visited, a:active { color: #70b33a; text-decoration: none; text-align: left; font-size:18px; font-weight:500 }'
        ,'a:hover { color: #70b33a; text-decoration: none; text-align: left; font-size:18px; font-weight:500 }'
		]
});

sIFR.replace(goobascript, {
  selector: '.MenuLiCaneSelected',
  wmode: 'transparent',
  selectable: true,
  fitExactly: false,
  forceSingleLine : false,
  css: [
		'.sIFR-root { color:#e8592e; text-align: left; font-size:18px; font-weight:500}'
		,'a { color: #e8592e;text-decoration: none; text-align: left; font-size:18px; font-weight:500 }'
        ,'a:link, a:visited, a:active { color: #e8592e; text-decoration: none; text-align: left; font-size:18px; font-weight:500 }'
        ,'a:hover { color: #e8592e; text-decoration: none; text-align: left; font-size:18px; font-weight:500 }'
		]
});

sIFR.replace(vagrounded, {
  selector: '#TitoloVivagliAnimali',
  wmode: 'transparent',
  selectable: true,
  fitExactly: false,
  forceSingleLine : false,
  css: ['.sIFR-root { color:#357203; text-align: left;}'
		,'.titolo {font-size:17px;}'
		,'.autore {font-size:12px;}'
		]
});

sIFR.replace(goobascript, {
  selector: '.TitoloCaneGatto',
  wmode: 'transparent',
  selectable: true,
  fitExactly: false,
  forceSingleLine : false,
  css: [
		'.sIFR-root { color:#357203; text-align: left; font-size:27px; font-weight:bold;}'
		]
});

sIFR.replace(vagrounded, {
  selector: '.SottotitoloCaneGatto',
  wmode: 'transparent',
  selectable: true,
  fitExactly: false,
  forceSingleLine : false,
  css: [
		'.sIFR-root { color:#5e7331; text-align: left; font-size:17px; font-weight:bold;}'
		]
});

sIFR.replace(vagrounded, {
  selector: '.titoliBoxes',
  wmode: 'transparent',
  selectable: true,
  fitExactly: false,
  forceSingleLine : true,
  css: [
		'.sIFR-root { color:#014567; text-align: left; font-size:17px; font-weight:bold;}'
		]
});

sIFR.replace(vagrounded, {
  selector: '.NomeCategoriaProdotto',
  wmode: 'transparent',
  selectable: true,
  fitExactly: false,
  forceSingleLine : true,
  css: [
		'.sIFR-root { color:#5e7331; text-align: left; font-size:22px; font-weight:bold;}'
		]
});
sIFR.replace(vagrounded, {
  selector: '.NomeCategoriaProdottoScheda',
  wmode: 'transparent',
  selectable: true,
  fitExactly: false,
  forceSingleLine : true,
  css: [
		'.sIFR-root { color:#ffffff; text-align: left; font-size:22px; font-weight:bold;}'
		]
});

sIFR.replace(goobascript, {
  selector: '.TitoloHPCaneGatto',
  wmode: 'transparent',
  selectable: true,
  fitExactly: false,
  forceSingleLine : false,
  css: [
		'.sIFR-root { color:#357203; text-align: left; font-size:20px; font-weight:bold;}'
		]
});

sIFR.replace(vagrounded, {
  selector: '.TitoloProdotti',
  wmode: 'transparent',
  selectable: true,
  fitExactly: false,
  forceSingleLine : false,
  css: [
		'.sIFR-root { color:#FFFFFF; text-align: left; font-size:20px; font-weight:bold;}'
		]
});

sIFR.replace(goobascript, {
  selector: '.leggi',
  wmode: 'transparent',
  selectable: true,
  fitExactly: true,
  forceSingleLine : false,
  css: [
		'.sIFR-root { color:#357203; text-align: left; font-size:16px; float:left}'
		,'a { color: #357203;text-decoration: none; text-align: left; font-size:16px;}'
        ,'a:link, a:visited, a:active { color: #357203; text-decoration: none; text-align: left; font-size:16px;}'
        ,'a:hover { color: #357203; text-decoration: none; text-align: left; font-size:16px;}'
		]
});

sIFR.replace(goobascript, {
  selector: '.etichetta',
  wmode: 'transparent',
  selectable: true,
  fitExactly: false,
  forceSingleLine : false,
  css: [
		'.sIFR-root { color:#ffffff; text-align: left; font-size:20px; font-weight:bold;}'
		]
});

sIFR.replace(goobascript, {
  selector: '.TitoloHPCaneGattoFunzioni',
  wmode: 'transparent',
  selectable: true,
  fitExactly: false,
  forceSingleLine : false,
  css: [
		'.sIFR-root { color:#357203; text-align: left; font-size:18px; font-weight:bold; }'
		,'label {font-size:18px; }'
		]
});

sIFR.replace(vagrounded, {
  selector: '.nameStore',
  wmode: 'transparent',
  selectable: true,
  fitExactly: false,
  forceSingleLine : false,
  css: [
		'.sIFR-root { color:#357203; text-align: left; font-size:10px; font-weight:bold;}'
		,'.titolo {font-size:18px;color:#ff6600}'
		,'.indirizzo {font-size:13px;}'
		,'.distanza {font-size:13px;}'
		,'.tuoindirizzo {font-size:18px;color:#ff3300}'
		]
});

sIFR.replace(goobascript, {
  selector: '.SubMenuLi',
  wmode: 'transparent',
  selectable: false,
  fitExactly: false,
  forceSingleLine : true,
  css: [
		'.sIFR-root { color:#dc3e1f; text-align: left; font-size:18px; font-weight:500;}'
		,'a { color: #dc3e1f;text-decoration: none; text-align: left; font-size:18px; font-weight:500 }'
        ,'a:link, a:visited, a:active { color: #dc3e1f; text-decoration: none; text-align: left; font-size:18px; font-weight:500 }'
        ,'a:hover { color: #dc3e1f; text-decoration: none; text-align: left; font-size:18px; font-weight:500 }'
		]
});

sIFR.replace(goobascript, {
  selector: '.SubMenuLiSelected',
  wmode: 'transparent',
  selectable: false,
  fitExactly: false,
  forceSingleLine : true,
  css: [
		'.sIFR-root { color:#e1970b; text-align: left; font-size:18px; font-weight:500}'
		,'a { color: #e1970b;text-decoration: none; text-align: left; font-size:18px; font-weight:500 }'
        ,'a:link, a:visited, a:active { color: #e1970b; text-decoration: none; text-align: left; font-size:18px; font-weight:500 }'
        ,'a:hover { color: #e1970b; text-decoration: none; text-align: left; font-size:18px; font-weight:500 }'
		]
});

sIFR.replace(goobascript, {
  selector: '.SubMenuProdLi',
  wmode: 'transparent',
  selectable: false,
  fitExactly: false,
  forceSingleLine : true,
  css: [
		'.sIFR-root { color:#dc3e1f; text-align: left; font-size:15px; font-weight:500;}'
		,'a { color: #dc3e1f;text-decoration: none; text-align: left; font-size:15px; font-weight:500 }'
        ,'a:link, a:visited, a:active { color: #dc3e1f; text-decoration: none; text-align: left; font-size:15px; font-weight:500 }'
        ,'a:hover { color: #dc3e1f; text-decoration: none; text-align: left; font-size:15px; font-weight:500 }'
		]
});

sIFR.replace(goobascript, {
  selector: '.SubMenuProdLiSelected',
  wmode: 'transparent',
  selectable: false,
  fitExactly: true,
  forceSingleLine : true,
  css: [
		'.sIFR-root { color:#e1970b; text-align: left; font-size:15px; font-weight:500 }'
		,'a { color: #e1970b;text-decoration: none; text-align: left; font-size:15px; font-weight:500 }'
        ,'a:link, a:visited, a:active { color: #e1970b; text-decoration: none; text-align: left; font-size:15px; font-weight:500 }'
        ,'a:hover { color: #e1970b; text-decoration: none; text-align: left; font-size:15px; font-weight:500 }'
		]
});

sIFR.replace(goobascript, {
  selector: '.country',
  wmode: 'transparent',
  selectable: false,
  fitExactly: false,
  forceSingleLine : true,
  css: [
		'.sIFR-root { color:#ffffff; text-align: left; font-size:20px; font-weight:500 }'
		,'a { color: #ffffff;text-decoration: none; text-align: left; font-size:20px; font-weight:500 }'
        ,'a:link, a:visited, a:active { color: #ffffff; text-decoration: none; text-align: left; font-size:20px; font-weight:500 }'
        ,'a:hover { color: #ffffff; text-decoration: none; text-align: left; font-size:20px; font-weight:500 }'
		]
});

sIFR.replace(goobascript, {
  selector: '.backVga',
  wmode: 'transparent',
  selectable: false,
  fitExactly: false,
  forceSingleLine : true,
  css: [
		'.sIFR-root { color:#5e7331; text-align: left; font-size:18px; font-weight:500 }'
		,'a { color: #5e7331;text-decoration: none; text-align: left; font-size:18px; font-weight:500 }'
        ,'a:link, a:visited, a:active { color: #5e7331; text-decoration: none; text-align: left; font-size:18px; font-weight:500 }'
        ,'a:hover { color: #5e7331; text-decoration: none; text-align: left; font-size:18px; font-weight:500 }'
		]
});