//spoiler bbcode
$(function() {
	$("span.spoiler a").toggle(function() {
		$(this).next().css("display","inline");
	},function() {
		$(this).next().css("display","none");
	});
	
});
//spoiler bbcode end
//smilies
function AddSmiley(text) {
	var txtarea = document.post.msg;
	text = ' ' + text + ' ';
	if (txtarea.createTextRange && txtarea.caretPos) {
		var caretPos = txtarea.caretPos;
		caretPos.text = caretPos.text.charAt(caretPos.text.length - 1) == ' ' ? caretPos.text + text + ' ' : caretPos.text + text;
		txtarea.focus();
	} else {
		txtarea.value  += text;
		txtarea.focus();
	}
}
//smilies end
//headerlink http & https
function headerlink(){
	switch (window.location.protocol) 
	{
	   case "https:":
	      location.href="https://www.flamer-scene.com"
	      break 
	   default:
	      location.href="http://www.flamer-scene.com"
	      break
	}
}
//headerlink end