
	/* TCM Tools JavaScript */
	
	$(document).ready(function()
	{
		// do stuff when DOM is ready
		
		$("#myaccount-iwantto-open").click(function()
		{
			$("#iwantto-menu").animate({ height: 'show', opacity: 'show' }, 'fast');
		});

		$("#iwantto-close").click(function()
		{
			$("#iwantto-menu").animate({ height: 'hide', opacity: 'hide' }, 'fast');
		});
	});

