jQuery(document).ready(function($) {



	$('.entry').mouseenter(function(){
		$('.entry .imagetagger.view .tags').stop(true,true).fadeIn("fast");
    }).mouseleave(function(){
		
		$('.entry .imagetagger.view .tags').stop(true,true).fadeOut("slow");
    });
	

});