$ (document) .ready (

	/* Hiding elements by default */
	function () {
		$ ("ul")	.filter (".inner")			.hide ();
		$ ("img")	.filter (".symbol-less")	.hide();
		
		/* If visitor clicked on the "see more" link */
		$ ("img")	.filter (".symbol-show")
			.click (
				function () {
					$ ("ul")	.filter (".inner")			.slideDown ("slow");
					
					$ ("img")	.filter (".symbol-show")	.hide ();
					$ ("img")	.filter (".symbol-less")	.show ();
				}
			)
			
		.end ();
		
		/* If visitor clicked on the "see less" link */
		$ ("img")	.filter (".symbol-less")
			.click (
				function () {
					$ ("ul")	.filter (".inner")			.slideUp ("slow");
					
					$ ("img")	.filter (".symbol-show")	.show ();
					$ ("img")	.filter (".symbol-less")	.hide ();
				}
			)
			
		.end ();
		
	}
);
