function initEmbed(){
	
	var widthWidget=300;
	var heightWidget=400;	
	var heightUL=heightWidget-($('#embed-header').height() + $('#embed-footer').height() + $('#embed-footer-featured').height() + $('#social-buttons').height());		
	
	$("#tophunted-body-embed").width(widthWidget); 
	$("#embed-wrapper").height(heightUL);
	
	$("#socialbutton-embed").toggle(function(){
			$('#social-embed').slideToggle(100, function(){$('#embed_code').focus();$('#embed_code').select();});		
		}, function(){
			$("#social-embed").slideToggle(100); 
		}
	);
	
	$("li").hover(showArrow,hideArrow);
	$(".top-profile-item").toggle(showMore, showLess);
	
	$('.more').bind('click', function(){			
		$(this).parent().find('.top-profile-item').click()
	} );
					
	 		 
			
};

function showMore(){
		
	hideOthers();
		
	if ($(this).parents('li').find('.top-embed-more').css('display') != 'none') {
		$(this).click();
		return true;
	}	
		
	$(this).parents('li').find('.top-embed-more').slideDown(function(){$('#embed-wrapper').stop().scrollTo($(this), 500);});
	$(this).parents('li').addClass('hover');
	$(this).parents('li').find('.more').addClass('less');			
}

function showLess(){

	$(this).parents('li').find('.top-embed-more').slideUp(500);
	$(this).parents('li').removeClass('hover');
	$(this).parents('li').find('.more').removeClass('less');
	
}

function showArrow(){
	$(this).find('.more').slideDown(100);		
}

function hideArrow(){
	$(this).find('.more').slideUp(100);
}

function hideOthers(){
	$('.top-embed-more').each(function(){
		if ( $(this).css('display') != 'none' ){
			$(this).parents('li').find('.top-profile-item').click();
		} 
	})
}
