function toggleHover(state, el) {

	el = $(el.id);

	if(state == "on")
		el.addClass("hover");
	if(state == "off")
		el.removeClass("hover");
}
