$(function(){
	$('#pg-hdr-nav a').hover(function(){
		$(this).stop().animate({ backgroundColor:'#221e1f' }, { duration: 125 });
	}, function(){
		$(this).stop().animate({ backgroundColor:'#ee1c23' },{ duration: 500 });
	});
	
	$('#leftNav a').hover(function(){
		$(this).stop().animate({ backgroundColor:'#ee1c23' }, { duration: 125 });
	}, function(){
		$(this).stop().animate({ backgroundColor:'#221e1f' },{ duration: 500 });
	});
	
	$("#searchInput").example("Search Store...");
});

