// JavaScript Document

$(document).ready(function(){
	//qTip for social icons					 
	$.fn.qtip.styles.orangestyle = {
		width: 127, padding: 5, background: '#fad890', color: 'black', textAlign: 'center', border: {width: 2, radius: 4, color: '#e4b76e'},
      tip:{ corner:'topMiddle', size: { y : 8} }    
	}

	$('#social a[title]').qtip({
		show: 'mouseover', 
	   hide: 'mouseout',
	   position: { corner: {target: 'bottomMiddle', tooltip: 'topMiddle' }  },
	   style:'orangestyle'

	})
});
