$(document).ready(function(){	
	if($('#drop')){
	
		var dropdown = $('#drop');
		var selected = $('#text');
		
		$('.bumb a, #text').click(function(){
			dropdown.slideToggle('fast');
		});
		$('a', dropdown).click(function(){
		
			textselectat = $(this).text();
			
			dropdown.slideUp('fast');
			selected.html(textselectat);
			
			document.cauta.oferta.value = $(this).attr('name');
			
			return false;
		});
		dropdown.hover(function(){}, function(){ dropdown.slideUp('fast');});
	}
});

$(document).ready(function(){	
	if($('#drop2')){
	
		var dropdown = $('#drop2');
		var selected = $('#text2');
		
		$('.bumb2 a, #text2').click(function(){
			dropdown.slideToggle('fast');
		});
		
		$('a', dropdown).click(function(){
		
			textselectat = $(this).text();
			
			dropdown.slideUp('fast');
			selected.html(textselectat);
			
			document.cauta.destinatie.value = $(this).attr('name');
			
			return false;
		});
		dropdown.hover(function(){}, function(){ dropdown.slideUp('fast');});
	}
});

$(document).ready(function(){	
	if($('#drop3')){
	
		var dropdown = $('#drop3');
		var selected = $('#text3');
		
		$('.bumb3 a, #text3').click(function(){
			dropdown.slideToggle('fast');
		});
		
		$('a', dropdown).click(function(){
		
			textselectat = $(this).text();
			
			dropdown.slideUp('fast');
			selected.html(textselectat);
			
			document.cauta.filtru.value = $(this).attr('name');
			
			return false;
		});
		dropdown.hover(function(){}, function(){ dropdown.slideUp('fast');});
	}
});
