$(document).ready(function () {
	
	$('#kereso').focus(function() {
		if($(this).val() == 'Keresés') {
			$(this).val('');	
		}
	});

	$('#kereso').blur(function() {
		if($(this).val() == '') {
			$(this).val("Keresés");	
		}
	});
	
});

function cmi(gomb, nember) {
	$('.gombocgreen').addClass('gombocwhite');
	document.getElementById('bimage').className = 'header0'+nember;
	gomb.className='gombocgreen';
}