
var $j = jQuery.noConflict();

$j(function() {

	// comment next lines to disable features

	bouncer();		
	
}); 



function bouncer() {	
	$j('a.nudge').hover (function() { //mouse in
				$j(this).stop().animate({ paddingLeft: 10 }, 800, 'easeOutBounce');
				}, function() { //mouse out
				$j(this).stop().animate({ paddingLeft: 0 }, 400, 'easeOutBounce');
				});	
				
	
}

var ie6 = jQuery.browser.msie && parseInt(jQuery.browser.version) < 7;

