function setEvents()
{
	
	$("div.addcomment").bind("mouseenter", this.hover);
	$("div.addcomment").bind("mouseleave", this.hoverout);
	
}

function hover()
{
	
	$("div.addcomment").addClass("active");
	
}

function hoverout()
{
	
	$("div.addcomment").removeClass("active");
	
}

$(document).ready(function(){
	
	setEvents();
	
});