$(document).ready(function() {
	$('#gt_looping_images').before('<div id="gt-looging-image-nav">').cycle({
		fx:      'fade',
		speed: 	 "slow", 
		timeout: 5000, 
    before:  onBefore, 
    after:   onAfter,
		pager: 	'#gt-looging-image-nav'
	});
	
	$('.gt-delete-button').bind('click', function(){
		var id = $(this).attr('rel');
		var mod = $(this).attr('title');
		
		$(this).parent().fadeOut(500, function(){
			$.ajax({
			  url: "/wp-content/plugins/looping_image/includes/functions/looping_image_admin_delete.php?delete="+id+"&mod="+mod,
			  cache: false
			});
			$(this).remove();
		});
	});
	
	// Functions
	function onBefore() {
		dataLink = $(this).attr("dataLink");
	  $('#gt_looping_image_overlay_content').html("<h1 id='gt_looping_image_headline'>"+this.title+"</h1><p id='gt_looping_image_copy'>"+this.alt+"<a href='"+dataLink+"'> more »</a></p>"); 
	} 
	function onAfter() {
		dataLink = $(this).attr("dataLink");
		$('#gt_looping_image_overlay_content').html("<h1 id='gt_looping_image_headline'>"+this.title+"</h1><p id='gt_looping_image_copy'>"+this.alt+"<a href='"+dataLink+"'> more »</a></p>"); 
	}
	
});

