// 
// 		@Author: 		Jannis Gundermann
// 		@Job: 			Mika Haka, PO Mini-Site
// 		@Date: 			05/02/2010
// 		@By: 				Supply Ltd.
// 		@Web: 			http://www.supply.net.nz/
// 
jQuery(document).ready(function($) {
	
	$('body').addClass('hasjs');

	// enable local smooth scrolling
	$.localScroll({
		// options
		hash: true
	});
	
	// nav jiggles
	$('nav a').hover(function() {
		$(this).animate({ paddingLeft :'5px'}, 200);
	}, function() {
		$(this).stop().animate({ paddingLeft : '0px' }, 400);
	});
	
});
