var helvetica_cond = { src: 'http://72.47.216.99/assets/flash/helvetica_cond.swf' };
sIFR.activate(helvetica_cond);
sIFR.replace(helvetica_cond, {
  selector: '#masthead h4',
  css: '.sIFR-root { color: #CCCCCC; background-color: transparent; }',
  wmode: 'transparent',
  forceSingleLine: true

});

$(document).ready(function() {

    if (typeof(supersleight) != 'undefined') {
		supersleight.init();
	}
	
	$('#main-nav li').hover(function(){
		$(this).addClass('hover');
	},function(){
		$(this).removeClass('hover');
	});
	
	$(".rollover").each(function() {
		(new Image()).src = this.src.replace("_off","_on");
		var offImg = this.src;
		var onImg = this.src.replace("_off","_on");
		$(this).hover(function(){
			this.src = onImg;
		},function(){
			this.src = offImg;
		})
		
		
	});
	
});