
// -------------------------------------------------------------------
// --- FUNCTION to SHOW/HIDE Sub Categories ---
// -------------------------------------------------------------------
	
	$(document).ready( 
		function() {
			var menu = 'off';
			$('#toolCollectionList').slideUp();
			
			
			$('div.toolBarBut').mouseover( function () {
				$(this).css( {'background-color' : '#96302b'} );
			}).mouseout( function () {
				$(this).css( {'background-color' : 'DBDBDC'} );
			})
			
			
			$('div#collections').click( 
				function () {
					if ( menu == 'off' ) {
						//$('div#collections').css( {'background-color' : '#96302b'} );
						$('#toolCollectionList').slideDown();
						menu = 'on';
					} else {
						$('#toolCollectionList').slideUp( 
							function () {
								$(this).hide();
								//$('div#collections').css( {'background-color' : 'DBDBDC'} );
								menu = 'off';
							});
					}
			
					return false;
				})
			$('#toolCollectionList').click(
				function() {
					
					$('#toolCollectionList').hide();
					$menu ='off';
						document.getElementById( "toolCollectionList" ).style.display = 'none';
			});
		})
	

// -------------------------------------------------------------------


