// JavaScript Document

jQuery(document).ready(function()

{

	jQuery(".ilsb-parent").show(

		function()

		{

			jQuery(".ilsb-child").show();

		},

		function()

		{

			jQuery(".ilsb-child").show();

		}

	);

	

	jQuery(".ilsb-parent > a").click(function()

	{

		return false;

	});

});

