
function sliderCaption(){

jQuery('div.SlideItMoo_element').hover(function(){
		
		jQuery('#resortCaption').empty();
		
		jQuery.ajax({
		
			type: 'GET',
			timeout: 5000,
			url: 'getCaptionContent.asp',
			data: { id: jQuery(this).attr('id') },
			error:function (xhr, ajaxOptions, thrownError){
                    //alert(xhr.status);
                    //alert(thrownError);
                } ,
			success: function(data){ jQuery('#resortCaption').html(data); }	

			//success: function(data){ alert(data) }	

		});	//close ajax call	
		
		jQuery('#resortCaption').show();
		
	}, function(){
		
		jQuery('#resortCaption').html("<span class='defaultHeader'>Hover over resort to view offer details. Click for full information.</span>");
		jQuery('#resortCaption').show();
		
		
	});
	
}
