var imagePath = new Array();

	imagePath[0] = new Array();
	imagePath[0]["pathName"] = "images/portfolio/cafe-rio-coco-2/RCP2.jpg";
	imagePath[0]["siteName"] = "#site-2";
	
	imagePath[1] = new Array();
	imagePath[1]["pathName"] = "images/portfolio/cafe-rio-coco-2/RCP3.jpg";
	imagePath[1]["siteName"] = "#site-2";
	
	imagePath[2] = new Array();
	imagePath[2]["pathName"] = "images/portfolio/ESS-brochure/OSB1.jpg";
	imagePath[2]["siteName"] = "#site-3";
	
	imagePath[3] = new Array();
	imagePath[3]["pathName"] = "images/portfolio/ESS-magazine/os-1.jpg";
	imagePath[3]["siteName"] = "#site-4";
	
	imagePath[4] = new Array();
	imagePath[4]["pathName"] = "images/portfolio/ESS-magazine/os-2.jpg";
	imagePath[4]["siteName"] = "#site-4";
	
	imagePath[5] = new Array();
	imagePath[5]["pathName"] = "images/portfolio/Hospitality-suite/HB1.jpg";
	imagePath[5]["siteName"] = "#site-5";
	
	imagePath[6] = new Array();
	imagePath[6]["pathName"] = "images/portfolio/Kirk-Wornum/KW2.jpg";
	imagePath[6]["siteName"] = "#site-6";
	
	imagePath[6] = new Array();
	imagePath[6]["pathName"] = "images/portfolio/Leiths/leiths1.jpg";
	imagePath[6]["siteName"] = "#site-7";
	
	imagePath[7] = new Array();
	imagePath[7]["pathName"] = "images/portfolio/LSLI/ic2.jpg";
	imagePath[7]["siteName"] = "#site-8";
	
	imagePath[8] = new Array();
	imagePath[8]["pathName"] = "images/portfolio/LSLI/ic3.jpg";
	imagePath[8]["siteName"] = "#site-8";
	
	imagePath[9] = new Array();
	imagePath[9]["pathName"] = "images/portfolio/LSLI/ic5.jpg";
	imagePath[9]["siteName"] = "#site-8";
	
	imagePath[10] = new Array();
	imagePath[10]["pathName"] = "images/portfolio/Medirest/GA2.jpg";
	imagePath[10]["siteName"] = "#site-11";
	
	imagePath[11] = new Array();
	imagePath[11]["pathName"] = "images/portfolio/monsters-1/monster2.jpg";
	imagePath[11]["siteName"] = "#site-9";
	
	imagePath[12] = new Array();
	imagePath[12]["pathName"] = "images/portfolio/monsters-1/monster3.jpg";
	imagePath[12]["siteName"] = "#site-9";
	
	imagePath[13] = new Array();
	imagePath[13]["pathName"] = "images/portfolio/the-lakes-by-yoo/lakes1.jpg";
	imagePath[13]["siteName"] = "#site-12";
	
	imagePath[13] = new Array();
	imagePath[13]["pathName"] = "images/portfolio/the-lakes-by-yoo/lakes2.jpg";
	imagePath[13]["siteName"] = "#site-12";
	

$(document).ready(function init() {
	
	//make random
	var minimum = 0;
	var maximum = imagePath.length;
	var rnd;
	
	rnd = Math.floor(minimum+(maximum-minimum)*(Math.random()));
	
	//fade in Image
	$(".image-frame").append("<img src='"+imagePath[rnd]["pathName"]+"' alt='' class='image index' />").load(
	$('.image').hide());
	$('.load').show();
	$(window).load( function() {
		$('.load').hide();
		$('.image').fadeIn('slow');
	});
	
	//assign hash value to site portfolio - onclick of the image
	$('.image').click(function() {
		window.location.replace("http://philippertl.co.uk/portfolio.html"+imagePath[rnd]["siteName"])	;				   
	});
});
