/*
 * 	Footer color change 1.0 - jQuery plugin
 *	written by Ward Peeters
 *	http://ptcpay.com
 *
 *	Copyright (c) 2010 Ward Peeters (http://coding-tech.com)
 *
 *	Built for jQuery library
 *	http://jquery.com
 *
 */

$(document).ready(function() {
	$('.footer ul li').hover(function() {
			$(this).css('color', '#024059');
		}, function() {
			$(this).css('color', '#146D91');
	});
});
