// JQUERY 4 LIFE

/*
function searchAlert () {
	$(".search-alert").fadeIn("slow");
}
function searchAlertHide () {
	$(".search-alert").fadeOut("slow");	
}
function readMore () {
	$("#sub-1").fadeOut("slow", function() {
		$("#sub-2").fadeIn("slow");
	});	
}
function readLess () {
	$("#sub-2").fadeOut("slow", function() {
		$("#sub-1").fadeIn("slow");
	});	
}*/

jQuery(document).ready(function() {
	$(".tooltip").hover(
		function () { 
			var src = $(this).find("img").attr("src");
			src = src.replace("_CB.jpg",".jpg");
			$(this).find("img").attr("src", src);
		},
		function () { 
			var src = $(this).find("img").attr("src");
			src = src.replace(".jpg","_CB.jpg");
			$(this).find("img").attr("src", src);
		}
		);
})
