$(document).ready(function () {
	resizeHeader();
	$('input[type=text]').each(function(t) {
		$(this).click(function(e) {
			$(this).attr('value', '');
		});
	});
	
	$('a.more').click(function(e) {
		e.preventDefault();
		var txt = $(this).attr('title');
		var section = $(this).parents('section');
		var d = $('div.hidden-posts', $(section));
		var a = $(this);
		if ($(d).css('display') == 'none') {
			$(d).slideDown(400, function() { $(a).html('[x]'); });
		}
		else {
			$(d).slideUp(400, function() { $(a).html(txt); });
		}
	});
	
	$.ajax({
		/*url: www_path + '?update', */
		url: 'http://ladyjamjar.com/fletcher/?update&u=1',
		success:function(data) { 
			/*alert(data);*/
		}
	});
	$(window).resize(function() {
		resizeHeader();
	});
});

function resizeHeader() {
	if ($('h1').height() < $('h1 img').height()) {
		$('h1 img').width('auto');
		$('h1 img').height('100%');
	}
}
