$(document).ready(function(){
//**********************************************************************************************
	$(".mensagem-amplia").fadeTo(0,0);
	$(".mensagem-online").fadeTo(0,0);
//**********************************************************************************************
	$(".mensagem-amplia").mouseover(
		function(){
			$(this).animate(
				{opacity:0.95},{
				duration: 200,
				easing: 'easeOutQuart',
				complete:function(){
					jQuery.each(jQuery.browser, function(i) {
						if($.browser.msie){
							$(this).css({opacity:''});
						}
					});
				}
			});
		}
	).mouseout(
		function(){
			$(this).animate(
				{opacity:0},{
				duration: 700,
				easing: 'easeOutQuart',
				complete:function(){
					jQuery.each(jQuery.browser, function(i) {
						if($.browser.msie){
							$(this).css({opacity:''});
						}
					});
				}
			});
		}
	);
//**********************************************************************************************
	$(".mensagem-online").mouseover(
		function(){
			$(this).animate(
				{opacity:0.95},{
				duration: 200,
				easing: 'easeOutQuart',
				complete:function(){
					jQuery.each(jQuery.browser, function(i) {
						if($.browser.msie){
							$(this).css({opacity:''});
						}
					});
				}
			});
		}
	).mouseout(
		function(){
			$(this).animate(
				{opacity:0},{
				duration: 700,
				easing: 'easeOutQuart',
				complete:function(){
					jQuery.each(jQuery.browser, function(i) {
						if($.browser.msie){
							$(this).css({opacity:''});
						}
					});
				}
			});
		}
	);
//**********************************************************************************************
	jQuery(document.body).imageZoom();
//**********************************************************************************************
	
})
