function gombclass()
	{
		var the_inputs=document.getElementsByTagName("input");
		for(var n=0;n<the_inputs.length;n++)
			{
				if(the_inputs[n].type=="submit")
					{
						the_inputs[n].className = 're_button';
					}
			}
	}

function re_start()
	{
		var active = $('#re_headerpic_help').html();
		active = parseInt(active);
		
		$('#headerpic' + active).fadeOut();
		if(active == 9) { active = 0; }
		active++;
		$('#headerpic' + active).fadeIn();
		$('#re_headerpic_help').html(active);
		//alert(active);
	}

$(document).ready(function() {

  $('#re_gyorskereso_table tbody tr:odd').addClass('re_gyorskereso_table_odd');

  $('#re_gyorskereso_table tbody tr:even').addClass('re_gyorskereso_table_even');

  $('#wrapper').append('<div style="display:none;" id="re_headerpic_help">1</div>');
  
  gombclass();
  setInterval("re_start();", 5000);
  
  //alert('asd');

});
