$(document).ready(function() {
	if($.cookie('textsize') == null) {
		textsize = parseInt(12);
		$.cookie('textsize', '12');
	}
	else {
		textsize = parseInt($.cookie('textsize'));
	}
	
	$('div.content div.center').css('font-size', textsize+'px');
	
	$('img.smallerText').click(function() {
		if(textsize > 12) {
			textsize--;
			$.cookie('textsize', textsize);
			$('div.content div.center').css('font-size', textsize+'px');
		}
	});
	
	$('img.biggerText').click(function() {
		textsize++;
		$.cookie('textsize', textsize);
		$('div.content div.center').css('font-size', textsize+'px');
	});
	
	// $("a[rel^='lightbox']").prettyPhoto();	
	$('a[rel^=lightbox]').each(function() { $(this).attr('href', $(this).attr('href') + '?iframe=true&width=400&height=400').attr('title', '').prettyPhoto({default_width: 890, default_height: 500}); });
	
	$('div.guestbookForm h4').click(function() {
		$('div.guestbookForm form').slideToggle();
	});
});

