$(function () {
	var tabContainers = $('div.tabs > div');
	tabContainers.hide().filter(':first').show();
	
	$('div.tabs ul.tabNavigation a').click(function () {
		tabContainers.hide();
		tabContainers.filter(this.hash).show();
		return false;
	}).filter(':first').click();
	
	if (ad_list.length > 2)
    {setTimeout('rotate_ads()', 5000);}
});

function rotate_ads()
{
  var suffix = (rotate_index % 2 == 0) ? 'left' : 'right';
  
  var box_content = "#box_content_" + suffix;
  var box_header = "#box_header_" + suffix;
  var box_text = "#box_text_" + suffix;
  var box_link = "#box_link_" + suffix;
  
  $(box_content).fadeOut(1000, function(){
    $(box_header).text(ad_list[rotate_index]['cim']);
    $(box_text).html(ad_list[rotate_index]['szoveg']);
    $(box_link).html(ad_list[rotate_index]['link']);
    $(box_content).fadeIn(2000);
    rotate_index = (rotate_index < (ad_list.length-1)) ? (rotate_index + 1) : 0;
  });
  
  if (ad_list.length > 2)
    {setTimeout('rotate_ads()', 5000);}
  
}
