$(document).ready(function(){

		//Store Image paths
		var toggleMinus = 'dot.png';
		var togglePlus = 'dot1.png';

		var $subHead = $('.children').parent();

		//By Default put the Menu in collapsed state
		$('.children').parent().children('ul').slideUp('fast');

		//Expand or Contract one particular Nested ul
		$('.title', $subHead).click(function() {
			if ( $(this).parent().children('ul').is(":visible") ) {
				$(this).parent().children('ul').slideUp('fast');
			} else{
				$(this).parent().children('ul').slideDown('fast');
			};
			return false;
		});
		});
