$(document).ready(function(){
	$("#picsScrolling").cycle('fade');
});

function deleteImage(imgObj) {
	answer = confirm("За да потвърдите изтриването натиснете OK!");
	if(answer) {
		$.ajax({
			type: "GET",
			url: "deleteImage.php?file_path=" + $(imgObj).attr("src"),
			success: function(data) {
				$($(imgObj).parent()).remove();
				$(imgObj).remove();			
			}
		});
	}	
}
function onBefore() { 
    $('#output').html( this.src); 
} 
function onAfter() { 
    $('#output').html( this.src) 
        .append( this.alt ); 
}
