//$(".imageContent").animate({
		//opacity: 1}, 1888,function(){  //div fader
			
			
			//preloader for landing page photography//
		   	 $(function () {
	$('body').hide();//hide all the images on the page
	});

	var i = 0;//initialize
	var int=0;//Internet Explorer Fix
	$(window).bind("load", function() {//The load event will only fire if the entire page or document is fully loaded
		var int = setInterval("doThis(i)",88);//500 is the fade in speed in milliseconds
	});

	function doThis() {
		$('body:hidden').eq(0).fadeIn(2888);//fades in the hidden images one by one
		i++;//add 1 to the count
		$('#preloader').hide();	
		}
	

		  $(function(){
		//random image//
var aryimages = ['../images/thewearyones/01.jpg','../images/noct9to5/08.jpg', '../images/thewearyones/06.jpg','../images/portraits/08.jpg','../images/studiostilllife/05.jpg','../images/thewearyones/07.jpg'];
document.getElementById("randomPic").src = 
        aryimages[Math.floor(Math.random() * aryimages.length)];
		
		
		});
		
	
