jQuery(document).ready(function (){
if (jQuery('.office') != undefined)
{
}

});

function officeOnClick(id)
{
	jQuery('.office li').css("display",'none');
	if (id != null)
		jQuery("#" + id).parent().css("display",'list-item');
}
