function show_other(other_id){
	if($('#'+other_id).val() == 'other'){
		$('#'+other_id+'_other').show();
	}else{
		$('#'+other_id+'_other').hide();
	}
}

$(document).ready(function(){

	var other_id = {
		1:"right_type",
		2:"condition",
		3:"build_type",
		4:"decor",
		5:"wc",
		6:"internet",
		7:"telephony",
		8:"electricity",
		9:"watersupply",
		10:"gassupply",
		11:"sewage",
		12:"telecommunications",
		13:"legal_form"
	};

	$.each(other_id, function(i, val) {
		show_other(val);
		$('#'+val).change(function(){
			show_other(val)
		});
	});

	$('#menu_1').mouseover(function(){
		$('#cmenu_1').show();
	}).mouseout(function(){
		$('#cmenu_1').hide();
	}).bind('mouseover', function(){
		$('#cmenu_1').show();
	});
	$('#menu_2').mouseover(function(){
		$('#cmenu_2').show();
	}).mouseout(function(){
		$('#cmenu_2').hide();
	}).bind('mouseover', function(){
		$('#cmenu_2').show();
	});
	$('#menu_3').mouseover(function(){
		$('#cmenu_3').show();
	}).mouseout(function(){
		$('#cmenu_3').hide();
	}).bind('mouseover', function(){
		$('#cmenu_3').show();
	});
	$('#menu_4').mouseover(function(){
		$('#cmenu_4').show();
	}).mouseout(function(){
		$('#cmenu_4').hide();
	}).bind('mouseover', function(){
		$('#cmenu_4').show();
	});
	$('#menu_5').mouseover(function(){
		$('#cmenu_5').show();
	}).mouseout(function(){
		$('#cmenu_5').hide();
	}).bind('mouseover', function(){
		$('#cmenu_5').show();
	});
	$('#menu_6').mouseover(function(){
		$('#cmenu_6').show();
	}).mouseout(function(){
		$('#cmenu_6').hide();
	}).bind('mouseover', function(){
		$('#cmenu_6').show();
	});

	$('#add_offer_link').mouseover(function(){
		$('#add_offer_menu').show();
	}).mouseout(function(){
		$('#add_offer_menu').hide();
	});
	$('#add_offer_menu').mouseover(function(){
		$('#add_offer_menu').show();
	}).mouseout(function(){
		$('#add_offer_menu').hide();
	})
});

