$(document).ready(
	function()
	{
		//social buttons
		$("#social").find("img").mouseover
		(
		 	function()
			{
				$(this).animate({right:"-=5px"}, 100);
			}
		 );
		
		$("#social").find("img").mouseout
		(
		 	function()
			{
				$(this).animate({right:"+=5px"}, 100);
			}
		 );
		
		//contact forms
		$("#contact-form-attorneys").validate();
		$("#contact-form-malpractice-victims").validate();
		
		if(document.getElementById("glossary-table"))
		{
			var cells = document.getElementById("glossary-table").getElementsByTagName("td");
			
			for(var i=0; i<cells.length; i++)
			{
				if ((i + 1) % 2 == 1)
				{
					cells[i].setAttribute("class", "title");
				}
			}
		}
	}
);
