// Start IE drop down menu
sfHover = function() {
	var sfEls = document.getElementById("nav").getElementsByTagName("LI");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className+=" sfhover";
		}
		sfEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", sfHover);
// End IE drop down menu

jQuery(document).ready(function(){
// Start placeholder function
	jQuery('input[type=text],textarea').addClass('placeholder');
	jQuery('input[type=text],textarea').focus(function(){
		if(jQuery(this).val() == jQuery(this).attr('defaultValue'))
		{
			jQuery(this).val('');
			jQuery(this).removeClass('placeholder');
		}
	});
jQuery('input[type=text],textarea').blur(function(){
	if(jQuery(this).val() == '')
	{
		jQuery(this).val(jQuery(this).attr('defaultValue'));
		jQuery(this).addClass('placeholder');
	}
});
// End placeholder function


// Start remove starting colons in title
    jQuery('.post-20 h1 .colon:first').hide();
// End remove starting colons in title
});