
$(document).ready( function() {


	// Rollover para las pestanyas de competiciones
	if ( $("div[name='pestana']").attr('class') == 'tabOff' ) {

		$(".tabOff").hover( function() {
				$(this).addClass('tabRolloverOn');
				$(this).removeClass('tabOff');
			}, 
			function () {
            $(this).removeClass('tabRolloverOn');
				$(this).addClass('tabOff');
		});
	}

	$(".seccion .normal").hover( function() {
			$(this).removeClass( 'normal' )
			$(this).addClass( 'hightlight' )
		}, 
		function () {
			$(this).removeClass( 'hightlight' )
			$(this).addClass( 'normal' )
	});

	/*$(".seccion .normal").hover( function() {
			$(this).removeClass( 'normal' )
			$(this).addClass( 'hightlight' )
		}, 
		function () {
			$(this).removeClass( 'hightlight' )
			$(this).addClass( 'normal' )
	});
	$(".seccionNivel2").hover( function() {
			$(this).removeClass( 'normal' )
			$(this).addClass( 'hightlight' )
		}, 
		function () {
			$(this).removeClass( 'hightlight' )
			$(this).addClass( 'normal' )
	});*/


});


