var Gallery = function(){
	//alert('new Gallery');
	p = 0;
	g = Pics;
	for(var i=0;i<g.pic.length;i++){
		console.log(g.pic[i]);
	}
	//$('#dialog').css('background','url(gallery/IMG_0186.jpg) no-repeat scroll center center transparent');
	$('#dialog').dialog('open');
	//var t=setTimeout("$('#dialog').fadeOut(1500,nextPic()).css('background','url(gallery/PA080228.jpg) no-repeat scroll center center transparent').fadeIn();",2500);
	//t=setTimeout("$('#dialog').fadeOut(1500,nextPic())",2000);
	t=setTimeout("nextPic()",100);
	//IMG_0186.jpg
}

function nextPic(){
	//alert('next Pic');
	var t1 = null;
	var t2 = null;
	p++;
	if (p>=g.pic.length) p = 0;
	console.log(g.pic[p]);
	if(t) clearTimeout(t);
	//if(t1) clearTimeout(t1);
	if(t2) clearTimeout(t2);
	t1=setTimeout("$('#dialog').fadeOut(1500);",3000);
	t2=setTimeout("$('#dialog').css('background','url(gallery/"+g.pic[p]+") no-repeat scroll center center transparent').fadeIn(1500,nextPic());",4500);
}
