function showResults()

in assets/www/scripts/photark_search.js [92:114]


function showResults(results) {
	//clear and populate search results page
	
	$("#resultGallery").html("");
	$("#Gallery").html("");

		for ( var int = 0; int < results.length; int++) {
			if(results.length==0){
				alert("Sorry, no results found");
			}
			if (i % 2 == 0) {
				$("#resultGallery").append('<div class="ui-block-a" ><div style="padding:5px !important;"><img src="'+results[int]+'"  style="height:150px !important; width:100% !important;" onclick=\'selectResult("'+results[int]+'")\' /></div></div>');
			} else {
				$("#resultGallery").append('<div class="ui-block-b" ><div style="padding:5px !important;"><img src="'+results[int]+'"  style="height:150px !important; width:100% !important;" onclick=\'selectResult("'+results[int]+'")\' /></div></div>');
			}
			$("#Gallery").append('<li><a href="'+results[int]+'" ><img src="'+results[int]+'"  alt="Photark" /></a></li>');
		}
		if(results.length==0){
			alert("Sorry, no results found");
		}else{
			$.mobile.changePage($('#searchResults'));
		}
}