var HomeScrollerPos=1;
var HomeScrollerTextHeight;
var HomeScrollerTimer;
var PeopleScrollerTimer;
var PeoplePosition=0;
var PeopleCount;
var PeopleFirstRun=true;
var LastPersonID;
var BeforeClickPerson=0;

$(document).ready(function() {

	$('.Socials img').mouseover(
		function(){
			var Position = $(this).offset();
			$('#SocialHover img').attr('src',$(this).attr('src'));
			$('#SocialHover').css('left',(Position.left-6)+'px');
			$('#SocialHover').css('top',(Position.top-6)+'px');
			$('#SocialHover').css('display','block');
			
			//EVAPORATION EFFECT
			
			$('.SocialHoverEvaporate').remove();
			$('#SocialHover').after('<div class="SocialHoverEvaporate"><a href="#"><img src="#" alt=""/></a></div>');
			
			$('.SocialHoverEvaporate img').attr('src',$(this).attr('src'));
			$('.SocialHoverEvaporate').css('left',(Position.left-6)+'px').css('top',(Position.top-6)+'px').css('opacity',50);
			
			$('.SocialHoverEvaporate, .SocialHoverEvaporate img').animate(
				{
					width:'90px',
					height:'90px',
					opacity:'0',
					left:'-=22px',
					top:'-=22px'
				}
				,400
				,function(){
					$(this).remove();
				}
			);
		
			//END OF EVAPORATE
			
		}
	)
	Cufon.replace('#LeftNavUL h3 a, #ItemList-Type2 h1, .menu-item  a, .ReadMoreBar h1, #ItemList li .RightContent h1');
	setTimeout('NavAdjust()',200);
	/*SIDEBAR ADJUSTER*/
	var Height=$('#MainContent').height();
	var Height2=$('#Footer').height();
	$('#LeftNav').css('height',(Height+Height2+70)+'px');
	
		
	//Cufon.replace('#content .left #left-inner h1.page-title');
	//Cufon.replace('.cufon-me');
	if(PType!=''){
		if(PType=='brands'){
			$('#menu-item-21').addClass('current_page_item');
		}
		if(PType=='banners'){
			$('#menu-item-33').addClass('current_page_item');
		}
		if(PType=='commissionplans'){
			$('#menu-item-34').addClass('current_page_item');
		}
		if(PType=='promotions'){
			$('#menu-item-32').addClass('current_page_item');
		}
		if(PType=='news'){
			$('#menu-item-41').addClass('current_page_item');
		}
	}
})

function NavAdjust(){
	/*NAV POSITIONING*/
	if($('.current_page_item').size()>0){
		var Pos=$('.current_page_item').position();
		var Width=$('.current_page_item').width();
		$('#CurrentActive').css('left',(Pos.left-10)+'px');
		$('#CurrentActive').css('top',(Pos.top-12)+'px');
		$('#CurrentActive #CenterImg').css('width',(Width+20)+'px');
		$('#CurrentActive').fadeIn(250);
	}
}
