/*-----------------------------------------------------------------------------
Name: freeweb.com.pl jQuery Style Barbara Dobosz
Theme: opacity.js
Version: 0.1
Author: freeweb.com.pl
-----------------------------------------------------------------------------*/

var $jx = jQuery.noConflict();

$jx(function() {
	$jx(".animate").css("opacity","0.8");
 
	$jx(".animate").hover(function () {
	
	$jx(this).stop().animate({
	opacity: 1.1
	}, "slow");
	},
	 
	
	function () {
	
	$jx(this).stop().animate({
	opacity: 0.8
	}, "slow");
	});
});