/* choose random walnut image of 3 */
jQuery(document).ready(function($) {
	$imageNumber = 3;
	$random = Math.floor(Math.random()*$imageNumber);
	jQuery('.walnut-image').css({
		'background' : 'url(images/walnuts' + $random + '.png) no-repeat','display' : 'block'
	});
});

/* navigation accordion */
jQuery(document).ready(function($) {
	$("#accordion").accordion({ header: "h3.expand", navigation: true, animated: 'slide', autoHeight: false });
});