
function socialButtonsColorSelect(){
	buttonColorMenu = document.getElementById('socialButtonsColor');
	buttonColorMenu.style.backgroundColor=buttonColorMenu.options[buttonColorMenu.selectedIndex].getAttribute('rel');
	//alert(buttonColorMenu.options[buttonColorMenu.selectedIndex].getAttribute('rel'))
	//$('.socialButton').removeClass();
	//$('.socialButton').addClass(buttonColorMenu.value);
}

function showSocialJoinButton(){
	RemoveContent('socialButtonSignup');
	socialJoinButtonCheck = document.getElementById('show_socialButtonSignup');
	if(socialJoinButtonCheck.checked){
		InsertContent('socialButtonSignup');
	}
}
function showSocialShareButton(){
	RemoveContent('socialButtonShare');
	socialShareButtonCheck = document.getElementById('show_socialButtonShare');
	if(socialShareButtonCheck.checked){
		InsertContent('socialButtonShare');
	}
}


function updateSocialNetworks(){
	
	//Reset the form for an insert
	id = document.getElementById('eventID').value;
	params = '';
	if(document.getElementById('socialButtonsSmall_1').checked){
		params += '&small';
		
	}
	if(document.getElementById('socialButtonsColor').value!=''){
		params += '&color='+document.getElementById('socialButtonsColor').value;
	}
	  var content = $("#socialButtons");
	  content.load("webroom/social.php?eventID="+id+"&ajaxPanel"+params+" #socialButtons");
}
