$(document).ready(function(){
		$('a[href*=##kukac##]').each(function(){
			e = this.href.replace('##kukac##','@');
			$(this).attr('href',e);
			e = this.text.replace('##kukac##','@');
			$(this).text(e);
		});
});

$(document).ready(function(){
	$('#keyword').focus(function() {
		if ($('#keyword').val() == 'keresés') {
			$('#keyword').val('');
		}
	});
	$('#keyword').blur(function() {
		if ($('#keyword').val() == '') {
			$('#keyword').val('keresés');
		}
	});
});

$(function(){
	$.Lightbox.construct({
		show_linkback: false,
		download_link: false,
		show_helper_text: false,
		colorBlend: false,		
		text: {
			image : 'kép',
			of: '/',
			close: 'bezár'
		}
	});
});