$(document).ready(function()
  {
  PreloadEdit();
 
 //background determination
 
  // var source=$(location).attr('href');
  var source=window.location.href;

   
   if (source != 'http://kingsleyimages.com/')
  	{
	$('#main').css('background-image', 'url(../images/img_backgrounds/watsonwed22_opacity50.png)');
	}
	else 
	{
	$('#main').css('background-image', 'url(../images/img_backgrounds/watsonwed22.png)');
	}
	
	
	// slideshow call
	$('a[rel="editorial"]').colorbox(
		{
		opacity: .5,
		arrowKey: true,
		preloading:true,
		slideshow: false,
		slideshowSpeed:3500,
		current:"{current} of {total} photos"
		});
	
  }
);

//image preload

function PreloadEdit()
	{
	var imageRawEdit=[
	'/../images/img_editorial/1.png',
	'/../images/img_editorial/2.png',
	'/../images/img_editorial/3.png',
	'/../images/img_editorial/4.png',
	'/../images/img_editorial/5.png',
	'/../images/img_editorial/6.png',
	'/../images/img_editorial/7.png',
	'/../images/img_editorial/8.png',
	'/../images/img_editorial/9.png',
	'/../images/img_editorial/10.png',
	'/../images/img_editorial/11.png',
	'/../images/img_editorial/12.png',
	'/../images/img_editorial/13.png',
	'/../images/img_editorial/14.png',
	'/../images/img_editorial/15.png',
	'/../images/img_editorial/16.png',
	'/../images/img_editorial/17.png',
	'/../images/img_editorial/18.png',
	'/../images/img_editorial/19.png',
	'/../images/img_editorial/20.png',
	'/../images/img_editorial/21.png',
	'/../images/img_editorial/22.png',
	'/../images/img_editorial/23.png',
	'/../images/img_editorial/24.png',
	'/../images/img_editorial/25.png',
	'/../images/img_editorial/26.png',
	'/../images/img_editorial/27.png',
	'/../images/img_editorial/28.png',
	'/../images/img_editorial/29.png',
	'/../images/img_editorial/30.png',
	'/../images/img_editorial/31.png',
	'/../images/img_editorial/32.png',
	'/../images/img_editorial/33.png',
	'/../images/img_editorial/34.png',
	'/../images/img_editorial/35.png',
	'/../images/img_editorial/36.png',
	'/../images/img_editorial/37.png',
	'/../images/img_editorial/38.png',
	'/../images/img_editorial/39.png',
	'/../images/img_editorial/40.png',
	'/../images/img_editorial/41.png',
	'/../images/img_editorial/42.png',
	'/../images/img_editorial/43.png',
	'/../images/img_editorial/44.png',
	'/../images/img_editorial/45.png'];
	
	var imagePreLoadEdit = new Array();
	for (i=0; i<imageRawEdit.length; i++)
		{
		imagePreLoadEdit[i]=new Image();
		imagePreLoadEdit[i].src=imageRawEdit[i];		
		}
	}
