// JavaScript Document

// Function Transparency MultiObjects (Current class will be used on)
/* ### HOVER for IE6 ### */
$(document).ready(function()
{
	if ($.browser.msie && $.browser.version < 7)
	{
		$('.opacity').hover(
			function(){$(this).addClass('opacity_hover');},
			function(){$(this).removeClass('opacity_hover');}
		)
	}
});
