/**
 * JS Teaserbox
 *
 * @copyright(c) 2010 by BTD Newmedia
 */
// DOM is ready 
$(document).ready(function(){
  
  // Get the tabs
  $('.fcbTV-teaser ul.nav li').click(function(){
    
    // Change Navigation
    $('.fcbTV-teaser ul.nav li').removeClass('active');
    $(this).addClass('active');
    
    // Change Content
    $('.tabs div').removeClass('active');
    currentTab = $(this).attr('class').replace(' active', '');
    $('#fcbTv-'+currentTab).addClass('active');
  }); 
});

