
$(function init() {
	// nastav focus
	// $('#search-box input[type=text]').focus();

	$('input[type=image]').fadeTo(1, 0.85);

	$('input[type=image]').hover(
		function(){ $(this).fadeTo(1, 1); },
		function(){ $(this).fadeTo('normal', 0.85); }
	);

	var color = $('.flash').css('backgroundColor');
	$('.flash').css('background', 'rgb(255, 236, 208)').animate({
		backgroundColor: color
	}, 1500);
});
