// Custom js 

$(function(){
	
	//tabs 
	
	var tabs = $('.tabs li');
	var tabcon = $('.tabscon .tabItem');
	
	/*tabcon.hide();
	tabcon.eq(0).show();
	tabs.eq(0).addClass('activetab');*/
	
	/*tabs.click(function(){
		tabs.removeClass('activetab');
		$(this).addClass('activetab');
		var item = $(this).index();
		tabcon.hide();
		tabcon.eq(item).show();
	});
	*/
	
    $('.schedule dt').prev().css('border','none');
	
	$('.sptable tbody tr').filter(function(index) {
	  return index % 3 == 2;
	}).addClass('sptd');

	
	
});

$(document).ready(function(){
    if($.browser.mozilla && $('.videoHolder').length){
        var clone=$('.videoHolder').find('object').clone()
        $('.videoHolder').html(clone);
        
    }
})


