var $J = jQuery.noConflict();

window.onload = function(){
	/*SIFR*/
	initSifr();
	
	/*MODAl*/
	initModal();
	
	/*COPY HEIGHT BOX*/
	if($J('.box').is(':visible') && $J('.inscrevase').is(':visible')){
		copyHeight('.box', '.inscrevase');
	}
	
	if($J('.box').is(':visible') && $J('.box2').is(':visible')){
		copyHeight('.box', '.box2');
	}
	
	/*SCROLL*/
	$J('.programacao .scroll-pane').jScrollPane({scrollbarWidth:20, scrollbarMargin:10});
	$J('.jScrollPaneDragBottom').css('top', $J('.jScrollPaneDrag').height() - 6 + 'px');
	
	/*WALLPAPERS*/
	$J('.wallpapers ul').find('li:last').css('border', 0);
	
	/*TABELA DADOS DE PILOTOS*/
	$J('.pilotos tbody').find('tr:even').addClass('even');
	$J('.pilotos tbody tr').find('td:first').addClass('first');
	$J('.pilotos tbody tr').find('td:last').addClass('last');
}