function loadImage()
{

var images=new Array();
var maxNumberOfImages=17;

//images[0]={"name":"CST_van.jpg", "url":"CST_van_enlarge.jpg"};
images[0]={"name":"SJGPskyline.jpg", "url":"SJGPskyline_enlarge.jpg"};
//images[2]={"name":"cst_truck.jpg", "url":"cst_truck_enlarge.jpg"};
images[1]={"name":"EAGP_engine_room_back.jpg", "url":"EAGP_engine_room_back_enlarge.jpg"};
images[2]={"name":"EAGP_engine_room_ front.jpg", "url":"EAGP_engine_room_ front_enlarge.jpg"};
images[3]={"name":"EAGP_engines.jpg", "url":"EAGP_engines_enlarge.jpg"};
images[4]={"name":"EAGP_seperators_flare.jpg", "url":"EAGP_seperators_flare_enlarge.jpg"};
images[5]={"name":"MGP_yard_flare_seperators.jpg", "url":"MGP_yard_flare_seperators_enlarge.jpg"};
images[6]={"name":"MGP_Clarks_angle.jpg", "url":"MGP_Clarks_angle_enlarge.jpg"};
images[7]={"name":"MGP_yard_flares.jpg", "url":"MGP_yard_flares_enlarge.jpg"};
images[8]={"name":"SJGP_DeMeth's.jpg", "url":"SJGP_DeMeth's_enlarge.jpg"};
images[9]={"name":"SJGP_DeMeth's_Profile.jpg", "url":"SJGP_DeMeth's_Profile_enlarge.jpg"};
images[10]={"name":"TWPL5_back.jpg", "url":"TWPL5_back_enlarge.jpg"};
images[11]={"name":"Turbine.jpg", "url":"Turbine_enlarge.jpg"};
images[12]={"name":"Wellhead_comp.jpg", "url":"Wellhead_comp_enlarge.jpg"};
images[13]={"name":"TWPL5_stacks_side_west.jpg", "url":"TWPL5_stacks_side_west_enlarge.jpg"};
images[14]={"name":"TWPL5_stacks front.jpg", "url":"TWPL5_stacks front_enlarge.jpg"};
images[15]={"name":"TWPL5_stacks_coolers_tanks.jpg", "url":"TWPL5_stacks_coolers_tanks_enlarge.jpg"};
images[16]={"name":"TWPL5_back_side_east_angle.jpg", "url":"TWPL5_back_side_east_angle_enlarge.jpg"};


var randomNumber1= Math.floor(Math.random()*maxNumberOfImages);
randomNumber2=(randomNumber1+1)%maxNumberOfImages;
randomNumber3=(randomNumber1+2)%maxNumberOfImages;

/*
$("#slot1").fadeOut("3000",function(){
$(this).empty();
$(this).append('<a href="images/' + images[randomNumber1].url+'"  '+ 'rel="lightbox"><img src="images/'+ images[randomNumber1].name +'"  '+ 'width="250" height="175" border="0"></a>');
$(this).fadeIn('3000',function(){
	activateLightBox();
	});
});
*/

$("#slot2").fadeOut("3000",function(){
$(this).empty();
$(this).append('<a href="images/' + images[randomNumber2].url+'"  '+ 'rel="lightbox"><img src="images/'+ images[randomNumber2].name +'"  '+ 'width="250" height="175" border="0"></a>');
$(this).fadeIn('3000',function(){
	activateLightBox();
	});
});

/*
$("#slot3").fadeOut("3000",function(){
$(this).empty();
$(this).append('<a href="images/' + images[randomNumber3].url+'"  '+ 'rel="lightbox"><img src="images/'+ images[randomNumber3].name +'"  '+ 'width="250" height="175" border="0"></a>');
$(this).fadeIn('3000',function(){
	activateLightBox();
	});
});
*/

//alert('<a href="images/' + images[randomNumber3].url+'"  '+ 'rel="lightbox"><img src="images/'+ images[randomNumber3].url +'"  '+ 'width="250" height="175" border="0"></a>');
//$("#slot1").fadeIn(3000);
//alert(Math.floor(Math.random()*16));
//$('a[rel=lightbox]').lightBox({fixedNavigation:true});
activateLightBox();

}

function activateLightBox()
{
	$('a[rel=lightbox]').lightBox({fixedNavigation:true});
}
