$(document).ready(function(){
	if($('#drop2')){

		var dropdown = $('#drop2');
		var selected = $('#text2');

		$('.bumb2 a').click(function(){
			dropdown.slideToggle('fast');
		});

		$('a', dropdown).click(function(){
			textselectat = $(this).text();
			dropdown.slideUp('fast');
			selected.html(textselectat);
			
		});
		dropdown.hover(function(){}, function(){ dropdown.slideUp('fast');});
	}
});

