// JavaScript Document

$(function(){
	$(window).load(function() { 
		$('.page_index #r2 div.g90 img').css('top',offsetTop);
		startImgScroll();
		//timer = doGalleryAnim('.page_index #r2 div.g90 img');
	});
	
	$('#r2 .g90 p').hide();
	$('#r2 .g90').hover(function() {
		$('#r2 .g90 p').fadeIn(500);
	},
	function() {
		$('#r2 .g90 p').fadeOut(500);
	});
	
});

function startImgScroll() {
	var img = '';
	$.ajax({
		url: "inc/randImg.php", 
		global: false, 
		type: "GET",
		data: {'ajax': $('.page_index #r2 img').attr('src')}, 
		success: function(data) {
			img = data;
			$('.page_index #r2 div.g90').prepend('<img class="new" style="display: none;top: '+offsetTop+';" />');
			$('.page_index #r2 div.g90 img.new').bind('load',function(ev) {
				//startImgScroll();
				$(this).delay(8000).fadeIn(750, function() { 
					$('.page_index #r2 div.g90 img').not('[class="new"]').remove();
					$('.page_index #r2 div.g90 img').attr('class','');
					startImgScroll();
				});
				
			}).attr('src',img);	
		}, 
		error: function() {
			sendError("There was a problem finding gallery images, sorry for any inconvenience.");
			startImgScroll();
		}
	});
}

