// JavaScript Document

// Function Transparency MultiObjects (Current class will be used on)
/* ### HOVER for IE ### */

$(document).ready(function()
{
	$('img.opacity,div.opacity,table.opacity').hover(
		function ()
		{
			$(this).addClass('opacity_hover');
		},
		function()
		{
			$(this).removeClass('opacity_hover');
		}
	)
});