/*****************************************************************************
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 helvetica = { src: 'http://www.novotelbali.com/wp-content/themes/nvtresort/fonts/helvetica.swf' };
var helveticab = { src: 'http://www.novotelbali.com/wp-content/themes/nvtresort/fonts/helvetica-neue.swf' };

sIFR.activate(helvetica);

sIFR.replace(helvetica, {
  selector: 'h1',
  wmode: 'transparent',
  css: [ '.sIFR-root {background-color:#ebead6;color: #fb6900;}' ]
});

sIFR.replace(helveticab, {
  selector: '#tagline',
  wmode: 'transparent',
  css: [ '.sIFR-root {background-color:#d3d3bb;color: #0e0a25;text-align: center;}' ]
});

sIFR.replace(helvetica, {
  selector: '#sidebar1 h3',
  wmode: 'transparent',
  css: [ '.sIFR-root {background-color:#ebead6;color: #fb6900;}' ]
});
sIFR.replace(helveticab, {
  selector: '#sidebar1 h4',
  wmode: 'transparent',
  css: [ '.sIFR-root {background-color:#ebead6;color: #3DB5A9;}' ]
});
sIFR.replace(helveticab, {
  selector: '.booking_box h3',
  wmode: 'transparent',
  forceSingleLine: true,
  forceWidth: true,
  fitExactly: true,
  css: [ '.sIFR-root {background-color:#d4d3bf;color: #413c68;forceWidth: true, fitExactly: true}' ]
});
sIFR.replace(helvetica, {
  selector: '.text h3',
  wmode: 'transparent',
  forceSingleLine: true,
  forceWidth: true,
  fitExactly: true,
  css: [ '.sIFR-root {color: #fb6900;forceWidth: true, fitExactly: true}' ]
});
sIFR.replace(helveticab, {
  selector: '.wp-caption',
  wmode: 'transparent',
  forceSingleLine: true,
  forceWidth: true,
  fitExactly: true,
  css: [ '.sIFR-root {color: #413c68;forceWidth: true, fitExactly: true}',
		'a { text-decoration: none; }',
		 'a:link { color: #0e0a25; }',
		 'a:hover { color: #413C68; }'
  ]
});

sIFR.replace(helveticab, {
  selector: '.menu li',
  wmode: 'transparent',
  css: [ '.sIFR-root {background-color:#d3d3bb;text-align: right;}',
		 'a { text-decoration: none; }',
		 'a:link { color: #413c68; }',
		 'a:hover { color: #413c68; }'
 ]
});

sIFR.replace(helveticab, {
  selector: 'p.homelink',
  wmode: 'transparent',
  css: [ '.sIFR-root {background-color:#bebca3;text-align: right;}',
		 'a { text-decoration: none; }',
		 'a:link { color: #413c68; }',
		 'a:hover { color: #413c68; }'
 ]
});







