$(document).ready(function(){
	$(".flipper").mouseover(function(){
		jQuery(".flippernote", this).fadeOut();
	});
	// $(".flip_gallery").mouseout(function(){
		// jQuery(".flippernote", this).fadeIn();
	// });
	// $(".flip_gallery").mouseover(function(){
		// $(this).next(".flippernote").fadeOut();
	// });
	// $(".flip_gallery").mouseout(function(){
		// $(this).next(".flippernote").fadeIn();
	// });
});