//Initialize Employee Owners Modal Block.
jQuery(document).ready(function()
{
	//Create modal block.
    window.modal_emp_owners = new modal_block("emp_owners");

	//Bindings to open map.
    $("a[href='images/Employees2011.jpg']").each(function()
    {
   		$(this).click(function(event)
   		{
   			event.preventDefault();
   			modal_emp_owners.show();
   		});
	});

	//Bindings to close map.
    $("#emp_owners img").each(function()
    {
   		$(this).click(function(event)
   		{
   			modal_emp_owners.hide();
   		});
	});
});
