// JavaScript Document

$(document).ready(function () {

$("#sliding-navigation3 ul li a").mouseover(function(){
		$(this).stop().animate({paddingLeft: '40px'},30);
		$(this).css({'background-color' : '#b28331', 'color' : '#ebebeb'});
});

$("#sliding-navigation3 ul li a").mouseout(function(){
	$(this).stop().animate({paddingLeft: '20px'},30);
	$(this).css({'background-color' : '#524c4c', 'color' : '#fff'});
});

});

