$(document).ready(function(){
	$(".ful").click(function(){
		$('.ful').css('height', '15px');
		ID = $(this).attr('id');
		ID = ID.substr(4,5);
		$('#ful-'+ID).css('height', '16px');
		ID = 'form#kereses-' + ID;
		$('#keresesek form').css('display', 'none');
		$(ID).css('display', 'block');
		
	});
	$(".ful").hover(function(){
		$(this).css('cursor', 'pointer');
		},function(){
		
	});

	$('form#kereses-vegye input').click(function(){
		if ($(this).val("KeresendĪ kifejezs")) {
			$(this).val("");
		}
	});
});

