window.onload=function(){var _1=document.getElementById("ilogo");_1.onmouseover=function(){_1.src="../images/ilogo_color.png";return true;};_1.onmouseout=function(){_1.src="../images/ilogo_gray.png";return true;};};
$(document).ready(function ()
{
	var imgs = $('#manufacturers div.item img');
	imgs.each (function ()
	{
		$(this).filter ('.over').hover (
			function ()
			{
				$(this).hide ();

			},
			function ()
			{
			}
		).end ().filter (':not(.over)').hover (
			function ()
			{	
			},
			function ()
			{
				imgs.filter ('.over').show ();

			}
		);
	});
});
