$(document).ready(function() {
function addClickHandlers() {
	
	$("div[typeId~=menu ]").mouseover(function()
	{
		$(this).css('color','Yellow');
	});
	$("div[typeId~=menu ]").mouseout(function()
	{
		$(this).css('color','#f0f1f1');
	});
	
	}

addClickHandlers();
	//$("input.#postBtn", this).click(function() {
	//$(document).load(addClickHandlers);	
	
});
