// for the partners page, to control the showing of additional information of each company
// copyright 2009 mike bowen.

$(document).ready(function() {
	$(".partner_container").bind("mouseover", function() { 
		$(this).find("img").hide();
		$(this).find("div").show();
		
	});
	$(".partner_container").bind("mouseout", function() { 
		$(this).find("img").show();
		$(this).find("div").hide();
	});
});
													   

							