$(document).ready(function() {
	var rand_no = Math.random();
	var current = "";
	rand_no = rand_no * 100;
	$.ajax({
		url: '/website/vagro/site/ajax/getpageheader.php?rand='+rand_no,
		success: function(data) {
			$('#pageheader img').fadeOut(400, function() {
				$(this).attr('src', data).load(function(){
					$('#pageheader img').fadeIn(400);
				
				});
				current = data;
			});
		}
	});
	
	// create a dummy image to load the header
	$(document.createElement("img")).attr({ id: 'dummyImg' }).appendTo('body').hide();

	
	setInterval(function(){
		var rand_no = Math.random();
		rand_no = rand_no * 100;
		$.ajax({   
			url: '/website/vagro/site/ajax/getpageheader.php?rand='+rand_no+'&curr='+current,
			success: function(data) {
				   	$('#dummyImg').attr('src', data).load(function(){
				  		 $('#pageheader img').fadeOut(300, function() {
							/*$(this).attr('src', data).load(function(){
								$('#pageheader img').fadeIn(400);
							
							});*/
							$(this).attr('src', $('#dummyImg').attr('src')).fadeIn(300);//.load(function(){
							current = data;
						}); 			   
					});
				   /*
				   $('#pageheader img').fadeOut(400, function() {
						$(this).attr('src', data).load(function(){
							$('#pageheader img').fadeIn(400);
						
						});
						current = data;
					});*/
			}
		});
	 }, 8500);
});
