    /*****************************************************************************
    The sIFR configuration should typically go in `sifr-config.js`, but in order to
    keep the config file clean, and to give a quick overview, it's done here instead.
    *****************************************************************************/
  
    var kabelu = {
      src: 'kabelu.swf'
    };
	


    // You probably want to switch this on, but read <http://wiki.novemberborn.net/sifr3/DetectingCSSLoad> first.
    // sIFR.useStyleCheck = true;
    sIFR.activate(kabelu);

    sIFR.replace(kabelu, {
      selector: 'h1'
      ,css: [
        '.sIFR-root { text-align: left; font-weight: normal; color: #4e9516; font-size: 26px; letter-spacing: -1; width: 50%;}'
      ],wmode: 'transparent'
    });
	
    sIFR.replace(kabelu, {
      selector: 'h3'
      ,css: [
        '.sIFR-root { text-align: left; font-weight: normal; color: #134432; font-size: 18px; width: 80%;}',
		'a { font-size: 18px; text-align: center; color: #134432; width: 100%; text-decoration: none;}',
		'a:hover {color: #9dba3f;}'
      ],wmode: 'transparent'
    });
	
	
	    sIFR.replace(kabelu, {
      selector: 'h5'
      ,css: [
        '.sIFR-root { text-align: left; font-weight: normal; color: #75bc3d; font-size: 20px;}'
      ],wmode: 'transparent'
    });
	
		
	  sIFR.replace(kabelu, {
      selector: 'h4'
      ,css: [
        '.sIFR-root { text-align: center; font-weight: normal; color: #134432; font-size: 18px;}'
      ],wmode: 'transparent'
    });
	  

    sIFR.replace(kabelu, {
      selector: 'h6'
      ,css: [
        '.sIFR-root { text-align: left; font-weight: normal; color: #134432; font-size: 18px; width: 50%; background-color: #f2faeb;}'
      ],wmode: 'transparent'
    });

