/*****************************************************************************
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 handelgoticBT = { src: '/theme/darma/js/rotis.swf' };
var h1 = {
			selector: 'h1', 
			css: ['a { color: #006f8a; text-decoration: none; }', 'a:hover { color: #006f8a; }', '.sIFR-root { color: #006f8a;}'], 
			tuneHeight:0, offsetLeft:0, offsetTop:0,wmode: 'transparent'};
var h2news = {
		selector: 'h2.news', 
		css: ['a { color: #006f8a; text-decoration: none; }', 'a:hover { color: #006f8a; }', '.sIFR-root { color: #006f8a;}'], 
		tuneHeight:0, offsetLeft:0, offsetTop:0,wmode: 'transparent'};

var h2active = {
		selector: 'h2.active', 
		css: ['a { color: #006f8a; text-decoration: none; }', 'a:hover { color: #006f8a; }', '.sIFR-root { color: #006f8a; }'], 
		tuneHeight:0, offsetLeft:0, offsetTop:0,wmode: 'transparent'};

var h2 = {
		selector: 'h2.menu', 
		css: ['a { color: #009bc9; text-decoration: none; }', 'a:hover { color: #009bc9; }', '.sIFR-root { color: #009bc9; }'], 
		tuneHeight:0, offsetLeft:0, offsetTop:0,wmode: 'transparent'};

var login = {
		selector: 'h3', 
		css: ['a { color: #FFFFFF; text-decoration: none; }', 'a:hover { color: #FFFFFF; }', '.sIFR-root { cursor:pointer; color: #FFFFFF; font-size:23px;}'], 
		tuneHeight:0, offsetLeft:0, offsetTop:0,wmode: 'transparent'};


sIFR.activate(handelgoticBT);

sIFR.replace(handelgoticBT, h1);
sIFR.replace(handelgoticBT, h2);
sIFR.replace(handelgoticBT, h2active);
sIFR.replace(handelgoticBT, h2news);
sIFR.replace(handelgoticBT, login);

