$(document).ready(function(){
	initAdvancedSearchHelp()
});

var initAdvancedSearchHelp = function() {
		var helpText = $('.page_content div#ashpop').html();
		$('.page_content .ashelp').qtip({
			content: helpText,
			position: {
				corner: {
					tooltip: 'leftMiddle',
					target: 'rightMiddle'
				}
			},
			style: {
			  border: {
			     width: 4,
			     radius: 4
			  },
			  padding: 10, 
			  tip: true
			}
			});
	}	

