
var polaroidInd=1;
var maxCount;
var pathArray = new Array();
var folderpath = "";
function chkframe(){
	
	pathArray = window.location.href.split( '/' );
		switch(pathArray[pathArray.length-1]){
			case "cottages_beach.php":
			case "cottages_beachIE.php":
			case "cottages_beachNS.php":
		document.getElementById("cot_beach").style.color="#d14311";
		folderpath="BEACHFRONT%20HOUSE";
			maxCount=27;
			document.getElementById("polaroid").src=document.getElementById("polaroid").src="css/cottages/"+folderpath+"/1.gif"
			break;
			case "cottages_loghouse.php":
			case "cottages_loghouseIE.php":
			case "cottages_loghouseNS.php":
		document.getElementById("cot_log").style.color="#d14311";
		folderpath="LOGHOUSE%20CABIN";
		document.getElementById("polaroid").src=document.getElementById("polaroid").src="css/cottages/"+folderpath+"/1.gif"
			maxCount=4;
			break;
			case "cottages_riverside.php":
			case "cottages_riversideIE.php":
			case "cottages_riversideNS.php":
		document.getElementById("cot_river").style.color="#d14311";
		folderpath="RIVERSIDE%20HOUSE";
		document.getElementById("polaroid").src=document.getElementById("polaroid").src="css/cottages/"+folderpath+"/1.gif"
			maxCount=1;
			break;
		}
		//alert(pathArray);
		
}// JavaScript Document

function picEdit(str){
	var picBool=false;
	if(str=="next"){
			if(polaroidInd<=maxCount-1){
			polaroidInd++;
			}
	}else if(str=="prev"){
			if(polaroidInd>0+1)
			polaroidInd--;	
	}
document.getElementById("polaroid").src="css/cottages/"+folderpath+"/"+polaroidInd+".gif"
}


	

	


