$(document).ready(function(){
	
	//Superfish
	$('.drop').superfish({ 
				delay:       300,                             	// 0.8 second delay on mouseout 
				animation:   {opacity:'show'},  				// fade-in and slide-down animation 
				speed:       'fast',                          	// faster animation speed 
				autoArrows:  false,                           	// disable generation of arrow mark-up 
				dropShadows: false                            	// disable drop shadows 
	});
	
	//Q-tip
	$.fn.qtip.styles.pictureProfit = { 
	   background: '#101010',
	   color: '#fff',
	   padding: '5px 8px 7px 8px',
	   border: {
	      width: 0,
	      radius: 6,
	      color: '#101010'
	   },
	   tip: true
	};
	
	$('.tooltip[title]')
	.qtip({ 
		style:'pictureProfit', 
		position: {
          corner: {
             tooltip: 'leftMiddle',
             target: 'bottomRight'
          }
       }
	});
	
	$('#process a[title]')
	.qtip({ 
		style:'pictureProfit', 
		position: {
          corner: {
             tooltip: 'bottomMiddle',
             target: 'topMiddle'
          }
       }
	});
	
	//Example text
	$('input, textarea').example(function() {
		return $(this).attr('title');
	}, {className: 'example'});

});
