function show_data()
{
	_date = new Date();
	year = _date.getFullYear();
	month = month[_date.getMonth()];
	day = _date.getDate();
	h = _date.getHours();
	m = _date.getMinutes();
	if (h<10) h='0'+h;
	if (m<10) m='0'+m;
	document.write(day+' '+month);
}

$(document).ready(function() {
	$("#profi").autocomplete(profession, {scroll: true,selectFirst: false});

	$('.cities_list a.inner').click(function(){
		//alert('here');
		$(this).parent().parent().children('div').toggleClass("off");
		return false;
	});	
	
	$('.also').corner("10px");
});

