$(readyMain);
function readyMain(){
	$(".social_buttons").hover(function() {
		var id = $(this).attr("id");
		$("#"+id+" .social_captions").show();
	},function() {
		var id = $(this).attr("id");
		$("#"+id+" .social_captions").hide();
	});
	
	$(".cms button").click(previewCMS);
	
	$('form input, form textarea').map(showDefault);
	$('form input, form textarea').blur(formBlur);
	$('form input, form textarea').focus(formFocus);
}
function previewCMS(){
	$(this).parent().children("button, .title").hide();
	$(this).parent().children(".hidden").show();
	$(this).parent().removeClass("cms");
}
function showDefault(){
	$(this).val($(this).attr("default"));
}
function formBlur(){
	if($(this).val() == ''){
		$(this).val($(this).attr('default'));
	}
}
function formFocus(){
	if($(this).val() == $(this).attr("default")){
		$(this).val('');
	}
}

