jQuery(document).ready(function($) {
	$('#follow-flickr').hover(function() {
		$(this).attr('src', template_url + '/images/follow-flickr2.png');
	}, function() {
		$(this).attr('src', template_url + '/images/follow-flickr.png');
	});
	$('#follow-twitter').hover(function() {
		$(this).attr('src', template_url + '/images/follow-twitter2.png');
	}, function() {
		$(this).attr('src', template_url + '/images/follow-twitter.png');
	});
	$('#follow-youtube').hover(function() {
		$(this).attr('src', template_url + '/images/follow-youtube2.png');
	}, function() {
		$(this).attr('src', template_url + '/images/follow-youtube.png');
	});
});

