 $(document).ready(function(){
 if ($.browser.msie) {
	$('.bg-item a').each(function(){
		var $titulo = $(this).find(".mov");
		var $icone = $(this).find(".ico");
		var _margem = $titulo.css('margin-top');
			_margem = _margem.substr(0,_margem.length-2);
		
		$(this).hoverIntent(function() {
		
		$icone.addClass("")
			$titulo.animate({
				"margin-top":(_margem-30)+'px'
				}, 500);
		}, function() {
			$titulo.animate({
				"margin-top":_margem+'px'
				}, 500);
		});
	
	});
  }
	 
 	
	
	
});
