// JavaScript Document


// this captures the event; without it the links don't work in many browsers

jQuery.noConflict();

jQuery(function() {
  jQuery(".leftNavigation a").live("mouseup", function(){  document.location=jQuery(this).attr("href"); return false;   });
  jQuery(".leftNavigation a").live("mousedown", function(){  document.location=jQuery(this).attr("href"); return false;   });  
  jQuery(".homeNavigation a").live("mouseup", function(){  document.location=jQuery(this).attr("href"); return false;   });
    jQuery(".homeNavigation a").live("mousedown", function(){  document.location=jQuery(this).attr("href"); return false;   });    
});



// this is for all pages except home page
// we are using this instead of sifr-config.js


	/* Edwardian Script */
	var helvetica = {
      src: 'helvetica.swf',
	  wmode:"transparent",
      ratios: [6, 1.41, 9, 1.35, 15, 1.29, 21, 1.25, 22, 1.22, 27, 1.24, 29, 1.21, 34, 1.22, 41, 1.21, 45, 1.2, 46, 1.21, 59, 1.2, 68, 1.19, 69, 1.2, 96, 1.19, 97, 1.18, 102, 1.19, 103, 1.18, 107, 1.19, 108, 1.18, 112, 1.19, 114, 1.18, 116, 1.19, 120, 1.18, 121, 1.19, 1.18]
    };	
	
	
	/* Helvetica Neue LT Std Med */
	var helveticaNeueLtStdMed = {
      src: 'helvetica-neue-lt-std-med.swf',
	  wmode:"transparent",
      ratios: [6, 1.41, 9, 1.35, 15, 1.29, 21, 1.25, 22, 1.22, 27, 1.24, 29, 1.21, 34, 1.22, 41, 1.21, 45, 1.2, 46, 1.21, 59, 1.2, 68, 1.19, 69, 1.2, 96, 1.19, 97, 1.18, 102, 1.19, 103, 1.18, 107, 1.19, 108, 1.18, 112, 1.19, 114, 1.18, 116, 1.19, 120, 1.18, 121, 1.19, 1.18]
    };
	
// don't activate for IE6

	sIFR.ua.supported = sIFR.ua.supported && (!sIFR.ua.ie || sIFR.ua.ieVersion > 6);
	
	/* activate them */
//	sIFR.activate(helvetica);
	sIFR.activate(helveticaNeueLtStdMed);
	
	/* Replace H1 */
	sIFR.replace(helveticaNeueLtStdMed, {
	  sColor: '#ffffff', 
      selector: 'h1',
      css: [
        '.sIFR-root { text-align: left; font-weight: bold; color:#ffffff; }',
        'a { text-decoration: none; }',
        'a:link { color: #000000; }',
        'a:hover { color: #CCCCCC; }'
      ]
    });
	

	/* Replace navigation text */
	sIFR.replace(helveticaNeueLtStdMed, {
	  sColor: '#000000', 
      selector: '.leftNavigation ul a',
      css: [
        '.sIFR-root { text-align: left; font-weight: bold; color:#000000; cursor:pointer; }',
        'a { text-decoration: none; }',
        'a:link { color: #000000; }',
        'a:hover { color: #000000; }'
      ]
    });


