jQuery(document).ready(function($) {
	//Set sidebar to full height of page hack
	if($('#wrapper').outerHeight() < $(window).height()){
		$('#wrapper').height(($(window).height() - 50));
	}
	
	$('#next a').attr('title', 'Previous Item');
	$('#prev a').attr('title', 'Next Item');
	
	$('#feature').masonry();
});