/**
 * @author Felipe K. De Boni
 */
$(document).ready(function(){
	$('.tooltiped').simpletip({
		fixed: true, 
		position: 'bottom',
		showEffect: 'custom', 
		hideEffect: 'custom',
		activeClass: 'tiphover',
		showCustom: function(){
			setTimeout(function(){
				$('.tiphover').prev('img').addClass('imghover');
				$('.tiphover').fadeIn(300);
			},1000);
			
		},
		hideCustom: function(){
			$('.tiphover').prev('img').removeClass('imghover');
			$('.tiphover').fadeOut(300);
		},
		onBeforeShow: function(){
			this.update(this.getParent().attr('rel'));
		}
	});
});

