$(document).ready(function(){
	
	$('#banners') 
	.cycle({ 
		fx:     'fade', 
		speed:  1500, 
		timeout: 12000,
		//sync: 0,
		pause: 1
	});
	
	$('a.button-link').wrapInner('<span class="button-link-inner"></span>');
	
	$('img.caption-image-left').each(function(){
		$(this).wrap('<div class="caption-image-left-container" style="width:' + $(this).width() + 'px" />');
		$(this).after('<p>' + $(this).attr('alt') + '</p>');
	});
	
	$('img.caption-image-right').each(function(){
		$(this).wrap('<div class="caption-image-right-container" style="width:' + $(this).width() + 'px" />');
		$(this).after('<p>' + $(this).attr('alt') + '</p>');
	});
	
/*	function defText(){
		$.get('modules/glossary/get-definition.php', function(data){
					alert(data);
					return data;
				});
	}
	
	$('span.definition').tooltip({ 
	    bodyHandler: function() { 
	        //return $($(this).attr("href")).html();
			return defText();
	    },
	    showURL: false,
		track: true
	});*/
	
});