var items = '';
var i = 0;
$(document).ready(function(){
	if($('#search input').val() != '') {
		$('#search').css('backgroundPosition', 'left bottom');	
	}
	$('#search input').focus(function(){
		$('#search').css('backgroundPosition', 'left bottom');	
	});
	$('#search input').blur(function(){
		if($(this).val() == '') {
			$('#search').css('backgroundPosition', 'left top');	
		}
	});
	$('#search a').click(function(){
		$('#search form').submit();
		return false;
	});

	$('div.menu > ul > li:not(.page-item-34)').hover(function(){
		$('.children', $(this)).show();
	}, function(){
		$('.children', $(this)).hide();
	});
	$('.hentry:last').css('border', 'none');
	items = $("#gallery img");
	items.eq(i).fadeIn('slow', function(){
		setTimeout('gallery()', 4000);
	});
});
function gallery() {

	items.eq(i).fadeOut('slow', function() {
		i = i + 1;
		if(items.size() <= i) {
			i = 0;
		}
		items.eq(i).fadeIn('slow', function(){
			setTimeout('gallery()', 4000);	
		});
	});

}

