function addPhotos() {
	$('.photoselector').append("<div class='numbers'>");
	for( var sIndex in photos['images'] ) {
		//only first photo will show
		if (sIndex==0) {
			$('#details').after("<div class='photo' id='photo"+sIndex+"'><img src='"+photos['images'][sIndex]+"' /></div>");
		}
		else {
			$('#details').after("<div class='photo' id='photo"+sIndex+"' style='display:none;'><img src='"+photos['images'][sIndex]+"' /></div>");
		}
		$('.numbers').append("<a href='#' onclick='fadeOutAllPhotos();$(\"#photo"+sIndex+"\").fadeIn(\"slow\");return false;'><img src='/images/packages/"+sIndex+".jpg' width='20px' height='20px' /></a>");
	}	
	$('.numbers').append("<br/>Choose photo</div>");	
}

function fadeOutAllPhotos() {
	for( var sIndex in photos['images'] ) {
        $("#photo"+sIndex).fadeOut("slow");
    }
}

$(document).ready(function(){
  	$("#order").click(function(){
		window.open('/packageRequest.aspx?PackageID='+packagenumber+'&rate='+rate+'&landingpage='+landingpage,'requestPackage','width=380,height=600,resizable=no,scrollbars=yes');
		return false;
	}	);
	addPhotos();
});    
    
