$(document).ready(function() 
{
	// By suppling no content attribute, the library uses each elements title attribute by default
	
/*
	$('#main img[title]').qtip({
	  content: {
	     text: false // Use each elements title attribute
	  },
	  position: {
	      corner: {
	         target: 'bottomLeft',
	         tooltip: 'bottomLeft'
	      },
	      adjust: {
	      	y: -100
	      }
		},
	  style:{
	  
	  	background: '#ffffff',
	  	color: '#000000',
	  	border: 'none'
	
	  },
	 show: { delay: 0},
	 hide: { delay: 100,
	 		fixed: true,
	 		effect: {
	 			type:'fade',
	 			length:100
	 			}
	 		}
	 
	});
*/
	
	$(".item").bind("mouseenter mouseleave", function(e){
        $(this).toggleClass("hidden");
    });	
	// NOTE: You can even omit all options and simply replace the regular title tooltips like so:
	// $('#main a[href]').qtip();
});


