//JavaScript
$(document).ready(function(){
	$('.profile.shoutbox .buttons a').mouseover(function(){
		$(this).addClass('hover');
	});
	$('.profile.shoutbox .buttons a').mouseout(function(){
		$(this).removeClass('hover');
	});
	$('.profile.shoutbox .buttons a').click(function(){
		if($(this).attr('id')!='share'){ $('.profile.shoutbox .buttons a').removeClass('SEL'); $(this).addClass('SEL'); }
	});
	$('.profile.links li a').mouseover(function(){
		$(this).addClass('hover');
	});
	$('.profile.links li a').mouseout(function(){
		$(this).removeClass('hover');
	});
	$('.profile.links li a').click(function(){
		$('.profile.links li a').removeClass('SEL'); 
		$(this).addClass('SEL');
		_eleID=$(this).attr('rel');
		//alert(_eleID);
		$('.profile.moreinfo .cont').fadeOut(50,function(){
		});
		$('.profile.moreinfo #'+_eleID).fadeIn(200);
	});
});
