$(document).ready(function(){
		
 $("a[href^='/glossary.cfm?gid=']").each(function (i){

	 var pageToLoad = this.href + "&ajaxCall=true";
	   $(this).bt({
		  ajaxPath: pageToLoad,
		  padding: 10,
		  spikeLength: 20,
		  spikeGirth: 20,
		  cornerRadius: 20,
		  fill: 'rgba(0, 0, 0, .8)',
		  strokeWidth: 1,
		  strokeStyle: '#CC0',
		  cssStyles: {color: '#FFF', fontWeight: 'bold'},
		  shadow: true,
		  shadowOffsetX: 10,
		  shadowOffsetY: 10,
		  shadowBlur: 3,
		  shadowColor: "#000"
			//trigger: 'hoverIntent',
			//hoverIntentOpts: {interval: 10, timeout: 2000}
		});
		//disable click on the anchor				
	    $(this).click(function(){
			return false;
	    });
 	});
 });
 
var ajaxPath = "/ajax/";

function viewLargerImage(assetPath){
	
	var pledgeDetailsPath = ajaxPath + "libraryAsset.cfm";
	
	$.get(pledgeDetailsPath, {assetPath:assetPath}, function(data){
		
		if(data.length){
			$.modal(data,{position: ["1%","25%"]});
		}else{
			alert("Larger image is not available at the moment");
		}
	});
}
