/* DAVID ZORYCHTA & DIMITRY 
   VINOGRADOV 
   MACMEE@GMAIL@COM */

//flies in selector at bottom of base
function flyIn(selector,base,callback)
{

	$(selector).css('left',($(document).width() - $(selector).width())/2);

	$(selector).animate({
			top: ($(base).offset().top  + $(base).outerHeight())
		  }, 400);
	setTimeout(function(){ $(selector).css({ position: 'static', top: '0'}); callback() },405);
}

$(document).ready(function(){
		
	//start slideshow
	makeSlideshow('#awesomeslideshow',857,272,10000,Array('images/flicker0.png','images/flicker1.png','images/flicker2.png','images/flicker3.png','images/flicker4.png','images/flicker5.png'));
	
	//aids kills you top right notice interval
	setInterval(function(){
		$('#diagnoseinfo span').html(parseInt($('#diagnoseinfo span').html()) + 1);
	},5000);
	
	//get twitter content
	$.getJSON("http://twitter.com/statuses/user_timeline/davstaylor.json?callback=?", function(data) {
        $("#twitter").html(data[0].text);
	});
	
	//slide all divs in
	setTimeout(function(){
		flyIn('#c1','#slideanchor',function(){
			flyIn('#c2','#c1',function(){
				flyIn('#c3','#c2',function(){
					flyIn('#c4','#c3',function(){  });
				});
			});
		});
	},200);
	
	//load in all other elements other than boxes, 2 second pause
	setTimeout(function(){
		$('.pausefadeinelements').fadeIn();
	},2000);
});
