$(function(){
	
	$(document.documentElement).keyup(function(event){
    if (event.keyCode == 37 && $('a#prev_page').length > 0) {
			window.location.href = $('a#prev_page').attr('href');
    } else if (event.keyCode == 39 && $('a#next_page').length > 0) {
			window.location.href = $('a#next_page').attr('href');
    }
  });

	$('#photoblog_image').load(function(){
		$('body.photoblog .picture .image, body.photoblog .picture .tools')
			.css('width', $('#photoblog_image').width() + 'px')
			.addClass('loaded');
	});
	
});
