var SITE_URL = 'http://admina.ro/';

function FadeSliderAuto() {
	 
	var id = $('.fade_slider_active').attr('id');
	var nr = $('.fade_slider_active').attr('nr');
	var id_arr = id.split('_');
	var cell_id = id_arr[2];
	
	$.ajax({
		type: 'POST',
		url: SITE_URL + 'js/ajax.php',
		data: 'action=auto&nr=' + nr,
		success: function(value) {
			
			$('#slider_img_'+value).animate({opacity: '1'}, 1500);
			$('#'+id).animate({opacity: '0'}, 1500, function() {
				$('#'+id).attr('class', 'fade_slider_inactive');
			});
			$('#slider_img_'+value).attr('class', 'fade_slider_active');
			
			$('#fade_slider_cell_'+value).attr('class', 'fade_slider_cell_hover');
			$('#fade_slider_cell_'+cell_id).attr('class', 'fade_slider_cell');
		}
	});
}

function FadeSliderJump(id) {
	
	var old_id = $('.fade_slider_active').attr('id');
	var new_id = $('#'+id).attr('nr');
	var cell_id = $('.fade_slider_cell_hover').attr('id');
	
	$('#slider_img_'+new_id).animate({opacity: '1'}, 1000);
	$('#'+old_id).animate({opacity: '0'}, 1000);
	$('#slider_img_'+new_id).attr('class', 'fade_slider_active');
	$('#'+old_id).attr('class', 'fade_slider_inactive');
	
	$('#'+cell_id).attr('class', 'fade_slider_cell');
	$('#'+id).attr('class', 'fade_slider_cell_hover');
	
}

window.setInterval("FadeSliderAuto();", 5000);
