$(function() {
  /* social links open in new window */
  $('.fb a, .twitter a').bind('click', function() {
    window.open(this.href); return false;
  });
  
  /* build tab buttons */
  var tabs_nav = '<ul class="tabs-nav">';
  $('.tabs h2').each(function(i) {
    tabs_nav += '<li><a href="#'+ $(this).text().toLowerCase() +'" class="'+ $(this).text().toLowerCase() +'">'+ $(this).text() +'</a></li>';
    $(this).remove();
  });
  tabs_nav += '</ul>';
  $('.tabs').prepend(tabs_nav);
  
  /* init tabs */
  var tabObj = $('.tabs > .tabs-content');
  $('.tabs-nav li').bind('click.tabs', function() {
  	var hash = $(this).find('a')[0].hash;
  	tabObj.hide().filter(hash).show();
  	$('.tabs-nav li').removeClass('selected');
  	$(this).addClass('selected');
  	return false;
  }).filter(':first').click();
  
  $('.tabs-nav li').bind('click.tweet', function(event) {
    if ($(event.target).is('a.tweets')) {
      CSBfleXcroll('tweets-wrap');
    }
  });
  
  /* custom scrollbars */
  CSBfleXcroll('news-wrap');  
  CSBfleXcroll('slide-wrap');
  
  /* magnivate twitter feed */
  $('#tweets-wrap').buzzard({ userName: 'magnivate', maxTweets: 10 });
});