$(document).ready(function () {
			$('#dropdown').find('div.txt').slideUp();
			$('#dropdown').find('div.selected').slideDown();

			$('#dropdown').find('div.selected').slideDown();
			$('#dropdown').find('div.selected').parent('div').find('a').find('img').attr("src", "/images/minus.gif");
			$('#dropdown .arrowlink').toggle(function() {
				if($(this).parent('div.info').hasClass('on'))
				{
					$('a.arrowlink').find('img').attr("src", "/images/plus.gif");	
					$(this).next('div.txt').slideUp(500);
					$(this).parent('div.info').removeClass('on');
				}
				else
				{
					$('a.arrowlink').find('img').attr("src", "/images/plus.gif");	
					$('#dropdown').find('div.txt').slideUp(500);
					$(this).next('div.txt').slideDown(500);
					$('div.info').removeClass('on');
					$(this).parent('div.info').addClass('on');
				    $(this).find('img').attr("src", "/images/minus.gif");
				}
					
				}, function() {
					if($(this).parent('div.info').hasClass('on'))
					{	
						$('a.arrowlink').find('img').attr("src", "/images/plus.gif");	
						$(this).parent('div.info').removeClass('on');
						$(this).next('div.txt').slideUp(500);
					}
					else
					{
						$('a.arrowlink').find('img').attr("src", "/images/plus.gif");	
						var $abc=$('#dropdown').find('div.on');
						$abc.find('div.txt').slideUp(500);	
						$abc.removeClass('on');
						$(this).parent('div.info').addClass('on');
						$(this).next('div.txt').slideDown(500);
						$(this).find('img').attr("src", "/images/minus.gif");
					}
						
				});
		});

