//These first three lines are commented out, as per the instructions at: http://patdryburgh.net/development/sifr-and-wordpress-themes/
//var oklahoma = {
//  src: 'http://localhost/khw/wp-content/themes/khw04/sifr/flash/oklahoma.swf'
//};


sIFR.activate(oklahoma);
 
// -- note -- these stylings have to be in reverse order since once sifr styles something it cannot be styled again (this is different then how proper css styling document flow operates --


sIFR.replace(oklahoma, {
      selector: '#sidebar h2',
	  css: [
      '.sIFR-root { color: #CC0000; font-weight:bold; text-transform:uppercase; background-color: #000000; letter-spacing: 0 }',
	  'a { text-decoration: none }',
	  'a:link { color: #CC0000 }',
	  'a:hover { text-decoration: underline }',	  
	  'a:hover { color: #FF0000 }'
      ],
      wmode: 'transparent',
      filters: {
        DropShadow: {
            knockout: false,
            distance: 2.3,
            color: '#111111',
            strength: 0.4,
            blurX: 0,
            blurY: 0
        }
    }	

});

sIFR.replace(oklahoma, {
      selector: '#maincontent h1, #maincontent h2, #maincontent h3, #maincontent h4',
	  css: [
      '.sIFR-root { color: #CC0000; font-weight:bold; text-transform:uppercase; background-color: #000000; letter-spacing: 0 }',
	  'a { text-decoration: none }',
	  'a:link { color: #CC0000 }',
	  'a:hover { text-decoration: underline }',	  
	  'a:hover { color: #FF0000 }'
      ],
      wmode: 'transparent',
      filters: {
        DropShadow: {
            knockout: false,
            distance: 2.3,
            color: '#111111',
            strength: 0.4,
            blurX: 0,
            blurY: 0
        }
    }	

});


sIFR.replace(oklahoma, {
      selector: '#header .navmenu li',
	  css: [
      '.sIFR-root { text-align: right; color: #CC0000; font-weight:bold; text-transform:uppercase; background-color: #000000; letter-spacing: 0 }',
	  'a { text-decoration: none }',
	  'a:link { color: #CC0000 }',
	  'a:hover { text-decoration: underline }',	  
	  'a:hover { color: #FF0000 }'
      ],
      wmode: 'transparent',
      filters: {
        DropShadow: {
            knockout: false,
            distance: 2.3,
            color: '#111111',
            strength: 0.4,
            blurX: 0,
            blurY: 0
        }
    }	

});