sfHover = function() {
	var sfEls = document.getElementById("nav").getElementsByTagName("LI");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className+=" sfhover";
		}
		sfEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", sfHover);

$(function() {
	$('A[rel="external"]').click( function() {
		window.open( $(this).attr('href') );
		return false;
	});
	
//	$('#miniSlides').innerfade({
//		animationtype: 'fade',
//		speed: 2000,
//		timeout: 5500,
//		type: 'sequence',
//		containerheight: '225px'
//	});
	
  $(".tweet").tweet({
      username: "chiefchiro",
      join_text: null,
      avatar_size: 32,
      count: 1,
      loading_text: "loading tweets..."
  });
  
  $('#sidebarSlider').innerfade({
	animationtype: 'fade',
	speed: 2000,
	timeout: 5500,
	type: 'sequence',
	containerheight: '255px'
  });

});
