$(document).ready(function() {

	$('#popularPosts a').hover(function() { // Mouse In
		$(this).animate({ 
							paddingLeft: '5px', 
							color: '#000' }, 
							200);
	}, function() { // Mouse Out
		$(this).animate({ 
							paddingLeft: 0, 
							color: '#333' }, 
							200);
	});

});

$(document).ready(function() {

	$('#links a').hover(function() { // Mouse In
		$(this).animate({ 
							paddingLeft: '5px', 
							color: '#eeeeee' }, 
							200);
	}, function() { // Mouse Out
		$(this).animate({ 
							paddingLeft: 0, 
							color: '#929292' }, 
							200);
	});

});

$(document).ready(function() {

	$('#advert-2 a img').hover(function() { // Mouse In
		$(this).animate({ 
							borderBottomColor: '#ccc', 
							borderLeftColor: '#ccc', 
							borderRightColor: '#ccc', 
							borderTopColor: '#ccc' }, 
							600);
	}, function() { // Mouse Out
		$(this).animate({ 
							borderBottomColor: '#edecec', 
							borderLeftColor: '#edecec', 
							borderRightColor: '#edecec', 
							borderTopColor: '#edecec' }, 
							600);
	});

});

