var first_div = '';
var second_div = '';




$(document).ready(function() {
	
	$.getJSON('/offers/getOffer', {}, function(json){   
		var index;
		
		// да-да... дублирование, нехорошо ((
		if(first_div == '' || first_div == '#offer_odd') {
			first_div = '#offer_even';
			second_div = '#offer_odd';
		} else {
			first_div = '#offer_odd';
			second_div = '#offer_even';
		}
	
		$(second_div).hide('slide', {direction: 'up'}, 500, function() {	
			index = Math.floor(Math.random() * max);
			$(first_div).html('');                            
       		$(first_div).append('<a href="' + json[index].url + '">' + json[index].title + '</a>');
		
        	$(first_div).show('slide', {direction: 'down'}, 500);
		});
			
	
		
		var max =  json.length + 1;
		setInterval(function(){
				
			if(first_div == '' || first_div == '#offer_odd') {
				first_div = '#offer_even';
				second_div = '#offer_odd';
			} else {
				first_div = '#offer_odd';
				second_div = '#offer_even';
			}
		
			$(second_div).hide('slide', {direction: 'up'}, 500, function() {
				index = Math.floor(Math.random() * max);
				
				$(first_div).html('');                            
           		$(first_div).append('<a href="' + json[index].url + '">' + json[index].title + '</a>');
			
            	$(first_div).show('slide', {direction: 'down'}, 500);
			})
		}, 5000);
		
    });
});

