jQuery.fn.exists = function() {
	return jQuery(this).length > 0;
}

$(document).ready(function() {

	$("#footer #logos img").mouseover(function() {
		var src = $(this).attr("src");
		$(this).attr("src", src.replace("-off", "-on"));
	});
	$("#footer #logos img").mouseout(function() {
		var src = $(this).attr("src");
		$(this).attr("src", src.replace("-on", "-off"));
	});

});
