(function($){
$.fn.equalHeight = function() {
   tallest = 0;
   this.each(function(){
    thisHeight = $(this).height();
    if( thisHeight > tallest)
        tallest = thisHeight;
   });
   if (tallest<300) tallest=300;
   this.each(function(){$(this).height(tallest);});
   tileHeight = tallest - 296;
   $('#page_box_wrap-lb').height(tileHeight);
}
})(jQuery);

   var currentTab = 0;
   var rotateSpeed = 3500;
   var numTabs;
   var autoRotate;
   
function openTab(clickedTab) {
	var thisTab = $("#prosfores_nav li a").index(clickedTab);
	$('[class^=toggle-tab]').removeClass("selected");
	$("#prosfores_nav li a:eq("+thisTab+")").addClass("selected");
	$(".prosfores_tab").hide();
	$(".prosfores_tab:eq("+thisTab+")").show();
	currentTab = thisTab;
}
function rotateTabs() {
	var nextTab = (currentTab == (numTabs - 1)) ? 0 : currentTab + 1;
	openTab($("#prosfores_nav li a:eq("+nextTab+")"));
}

function check_totop() {
      if ($('#backtotop').position().top < 1150)
         {$('#backtotop').hide()} else {$('#backtotop').show()}
}

$(document).ready(function() {
   $('#rotator').append("<img src='/ui/img/front/banner.jpg' width='901' height='300' /><img src='/ui/img/front/banner2.jpg' width='901' height='300' /><img src='/ui/img/front/banner3.jpg' width='901' height='300' />");
   $('#rotator').cycle({fx:'fade',speed:4500});
   $('#pliromes_rotator').append("<img src='/ui/img/front/01paypal.png' width='198' height='29' /><img src='/ui/img/front/02paypal.png' width='198' height='29' />");
   $('#pliromes_rotator').cycle({fx:'turnDown',speed:400});
   $('#logos_rotator').append("<img src='/ui/img/front/logos/logo1.jpg' width='511' height='105' /><img src='/ui/img/front/logos/logo2.jpg' width='511' height='105' /><img src='/ui/img/front/logos/logo3.jpg' width='511' height='105' /><img src='/ui/img/front/logos/logo4.jpg' width='511' height='105' /><img src='/ui/img/front/logos/logo5.jpg' width='511' height='105' /><img src='/ui/img/front/logos/logo6.jpg' width='511' height='105' /><img src='/ui/img/front/logos/logo7.jpg' width='511' height='105' /><img src='/ui/img/front/logos/logo8.jpg' width='511' height='105' /><img src='/ui/img/front/logos/logo9.jpg' width='511' height='105' /><img src='/ui/img/front/logos/logo10.jpg' width='511' height='105' />");
   $('#logos_rotator').cycle({fx:'fade', delay:-2200, speed:900});

   
   numTabs = $("#prosfores_nav li a").length;
   $("#prosfores_nav li a").click(function() { 
		openTab($(this));return false; 
	});
   $("#prosfores_results_container").mouseover(function(){clearInterval(autoRotate)})
      .mouseout(function(){autoRotate = setInterval("rotateTabs()", rotateSpeed)});
	$("#prosfores_nav li a:eq("+currentTab+")").click()
   $("#prosfores_results_container").mouseout();
   
   $("a[rel^='prettyPhoto']").prettyPhoto({theme:'light_rounded',overlay_gallery:false,social_tools:''});
   if ($('#backtotop').length>0)
      {check_totop()};
   $('#page_box_content, #page_box_wrap-r ').equalHeight();
});

