/*****************************************************************************
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 gill_sans_light={src:'http://origin-static.ciscoeos.com/zipupload/ebc/9f1/aa3ece3c68d77b70f494825bb0/js/Gill_Sans_Light.swf'};
var gill_sans_regular={src:'http://origin-static.ciscoeos.com/zipupload/ebc/9f1/aa3ece3c68d77b70f494825bb0/js/Gill_Sans_Regular.swf'};



// 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(gill_sans_light,gill_sans_regular);

// 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>.

//for module headers in signup, join, login and password reset forms
sIFR.replace(gill_sans_light, {
  selector: '#blog_listing-294510.blog_listing .module .content .foot .nav_meta ul li.more',
  css: [
  	'.sIFR-root { text-align:left;padding-left:3px; text-transform: uppercase; color: #767676;font-size:18px;}',
  	'.sIFR-root a {color:#767676; text-decoration:none;font-size:18px;}',
  	'.sIFR-root a:hover {color:#be1d23}'
  	],
  tuneHeight: '-5',
  wmode: 'transparent'
});


sIFR.replace(gill_sans_light, {
  selector: '#list_album-383753.list_album .head .title h3',
  css: [
    '.sIFR-root {padding-left:3px; text-transform: uppercase; color: #d61920;font-size:30px;}',
	'.sIFR-root .total {display:block;}',
  	],
  tuneHeight: '-5',
  wmode: 'transparent'
});

sIFR.replace(gill_sans_light, {
  selector: '#album_info-383751 .txt .title h4',
  css: [
    '.sIFR-root {padding-left:3px; text-transform: uppercase; color: #ffffff;font-size:26px;}',
	'.sIFR-root .total {display:none;}',
  	],
  tuneHeight: '-12',
  wmode: 'transparent'
});

sIFR.replace(gill_sans_light, {
  selector: '#container .module .content .foot .nav_meta ul li.new:not(.removeSifr),.module .content .foot .nav_meta ul li.register,#blog_listing-294510.blog_listing .module .content .foot .nav_meta ul li.more',
  css: [
  	'.sIFR-root { text-align:left;padding-left:3px; text-transform: uppercase; color: #767676;font-size:18px;}',
  	'.sIFR-root a {color:#767676; text-decoration:none;font-size:18px;text-transform: uppercase;}',
  	'.sIFR-root a:hover {color:#be1d23}'
  	],
  tuneHeight: '-5',
  wmode: 'transparent'
});

sIFR.replace(gill_sans_light, {
  selector: '#reset_password-294576 .module .content .head h3',
  css: [
  	'.sIFR-root { text-transform: uppercase; color: #FFFFFF; font-size:28px}',
  	],
  tuneHeight: '-5',
  wmode: 'transparent'
});

sIFR.replace(gill_sans_light, {
  selector: 'body.m32 #container .module .content .head h3, #container .modalWindow .module .content .head h3',
  css: [
  	'.sIFR-root { text-transform: uppercase; color: #FFFFFF; font-size:30px}',
  	],
  tuneHeight: '-12',
  wmode: 'transparent'
});



//for the photo/video title on the photo and detail pages
sIFR.replace(gill_sans_light, {
  selector: '.photo_viewer .body .title h3, .video_player .body .title h3, .audio_player .lyrics h3 ',
  css: [
    '.sIFR-root {padding-left:3px; text-transform: uppercase; color: #d61920;font-size:30px;}',
	'.sIFR-root .total {display:none;}',
  	],
  tuneHeight: '-5',
  wmode: 'transparent'
});

//for the member detail page
sIFR.replace(gill_sans_light, {
  selector: '#member_listing-850114.member_listing .module .content .head .title h3',
  css: [
  	'.sIFR-root { text-align:center;padding-left:3px; text-transform: uppercase; color: #d61920;font-size:30px;}',
	'.sIFR-root .total {display:block;}',
  	'.sIFR-root a {color:#333333; text-decoration:none}',
  	'.sIFR-root a:hover {color:#333333}'
  	],
  tuneHeight: '-12',
  wmode: 'transparent'
});

/*

sIFR.replace(gill_sans_light, {
  selector: '#photo_thumbnail-294569 .module .content .head h3,#photo_thumnail-294571 .module .content .head h3,#video_thumbnail-890493 .module .content .head h3,#video_thumbnail-294593 .module .content .head h3',
  css: [
  	'.sIFR-root { padding-left:3px; text-transform: uppercase; color: #d61920;font-size:30px;}',
	'.sIFR-root .total {display:none;}',
  	'.sIFR-root a:hover {color:#333333}'
  	],
  tuneHeight: '-12',
  wmode: 'transparent'
});
*/



sIFR.replace(gill_sans_light, {
  selector: '#discussion_listing-294531 .module .content .foot .nav_meta li',
  css: [
  	'.sIFR-root { text-align:center;padding-left:3px; text-transform: uppercase; color: #d61920;font-size:30px;}',
	'.sIFR-root .total {display:none;}',
  	'.sIFR-root a {color:#333333; text-decoration:none}',
  	'.sIFR-root a:hover {color:#333333}'
  	],
  tuneHeight: '-10',
  tuneWidth:'-18',
  wmode: 'transparent'
});


sIFR.replace(gill_sans_light, {
  selector: '#categories-294516 .module .content .head h3,#categories-765322 .module .content .head h3,#categories-294517 .module .content .head h3,#categories-294519 .module .content .head h3,#discussion_listing-294533 .module .content .head h3 ',
  css: [
  	'.sIFR-root { text-align:right;text-transform: uppercase; color: #d61920;font-size:30px;leading: -5;}',
	'.sIFR-root .total {display:none;}',
  	'.sIFR-root a {color:#333333; text-decoration:none}',
  	'.sIFR-root a:hover {color:#616161}'
  	],
  tuneHeight: '-10',
  wmode: 'transparent'
});

//for page headers and module headers
sIFR.replace(gill_sans_light, {
  selector: '#header h1:not(.removeSifr), #container .module .content .head h3:not(.removeSifr)',
  css: [
  	'.sIFR-root { text-align:center;padding-left:3px; text-transform: uppercase; color: #d61920;font-size:30px;}',
	'.sIFR-root .total {display:none;}',
  	'.sIFR-root a {color:#333333; text-decoration:none}',
  	'.sIFR-root a:hover {color:#333333}'
  	],
  tuneHeight: '-12',
  wmode: 'transparent'
});

//for the global header
/*
sIFR.replace(gill_sans_regular, {
  selector: 'h1#pagetitle',
  css: [
	  	'.sIFR-root { text-transform: uppercase; color: #676767;font-size:30px; }',
	  	'.sIFR-root a {color:#050505; text-decoration:none}',
	  	'.sIFR-root a:hover {color:#050505}'
  	],
  tuneHeight: '-5',
  wmode: 'transparent'
});
*/


//for the global sitemap footer
sIFR.replace(gill_sans_regular, {
  selector: '#footer h3:not(.removeSifr)',
  css: [
	  	'.sIFR-root { text-transform: uppercase; color: #050505;font-size:30px; }',
	  	'.sIFR-root a {color:#050505; text-decoration:none}',
		
	  	'.sIFR-root a:hover {color:#050505}'
  	],
  tuneHeight: '-5',
  wmode: 'transparent'
});

sIFR.replace(gill_sans_light, {
  selector: '.content .division .category.selected .title',
  css: [
  '.sIFR-root { text-transform: uppercase;font-size:23px;color:#9b9b9b;text-align:right;}',
  	'.sIFR-root	a { text-transform: uppercase;font-size:18px;color:#616161;text-align:right;text-decoration:none;}',
	'.sIFR-root a:hover {color:#616161}'
  	],
  tuneHeight: '-8',
  wmode: 'transparent'
}); 

sIFR.replace(gill_sans_light, {
  selector: '.content .division .category .title',
  css: [
  	'.sIFR-root { text-transform: uppercase;font-size:23px;color:#9b9b9b;text-align:right;}',
  	'.sIFR-root	a { text-transform: uppercase;font-size:18px;color:#DF1D24;text-align:right;text-decoration:none;}',
	'.sIFR-root a:hover {color:#616161}'
  	],
  tuneHeight: '-8',
  wmode: 'transparent'
});


//For photo and videos module- Selected state
sIFR.replace(gill_sans_light, {
  selector: '#categories-294516.categories .content .division .category.selected,#categories-294517.categories .content .division .category.selected',
  css: [
  	'.sIFR-root { text-transform: uppercase;font-size:23px;color:#9b9b9b;text-align:right;}',
  	'.sIFR-root	a { text-transform: uppercase;font-size:18px;color:#616161;text-align:right;text-decoration:none;}',
	'.sIFR-root a:hover {color:#616161}'
  	],
  tuneHeight: '-8',
  wmode: 'transparent'
});

sIFR.replace(gill_sans_light, {
  selector: '.content .division .title',
  css: [
  '.sIFR-root { text-transform: uppercase;font-size:23px;color:#a8a8a8;text-align:right;}',
  '.sIFR-root	a { text-transform: uppercase;font-size:18px;color:#DF1D24;text-align:right;text-decoration:none;}',
	'.sIFR-root a:hover {color:#DF1D24}'
  	],
  tuneHeight: '-8',
  wmode: 'transparent'
});



