$(function() {
	$('#leftSearchProdukcjaImport, #leftSearchDystrybucja').change(function(){
		if($(this).attr('checked'))
			$('#leftSearchInstalator').attr('checked', false);
	});

	$('#leftSearchInstalator').change(function(){
		if($(this).attr('checked'))
			$('#leftSearchProdukcjaImport, #leftSearchDystrybucja').attr('checked', false);
	});
	
	$('#map area').mouseover(function() {
		$('#mapChanger').attr('class', $(this).attr('id'));
	}).mouseout(function() {
		$('#mapChanger').attr('class', '');
	}).click(function() {
		var id = $(this).attr('id');
		$('#mapSelection').attr('class', id);
		$('#leftSearchWojewodztwo').val(id.substr(9));
		return false;
	});
});
