//Initialise
function init_panels() {
	if (!$('div.box').length) {
	return;
	}
	// Animation speed
	var speed = 200;
	
	// Begin with mouseover
	$('img.nav').hover(function() {
		// Alter target
		$(this).stop().animate({
			width: '80px',
			height: '80px'
			}, speed)
		},
	// End with mouseout
	function() {
	// Restore target <img>
	$(this).stop().animate({
		width: '65px',
		height: '65px'
		}, speed)
	});
}
// Kicks things off
$(document).ready(function() {
	init_panels();
});
