function slideshow(id)
{	
	//alert('Album Id :'+id);
	var dataString='Id=' + id;
	$.ajax({
		type: "get",
		url: "/Picasa/Slideshow",
		data: dataString,
		success: function(response) {
			$("#display").hide(100, function(){
				$("#display").html("");
				$("#display").html(response);
				$("#display").slideDown(100);
			});
		}
	});
}

function frnt_slideshow(id)
{	var selectBox = document.getElementById("photoselection");
	var PicasaID = selectBox.options[selectBox.selectedIndex].value
	alert('Album Id :'+PicasaID);
	
	var dataString='PicasaID=' + PicasaID;
	$.ajax({
		type: "get",
		url: "/Slideshow",
		data: dataString,
		success: function(response) {
			$("#display").hide(100, function(){
				$("#display").html("");
				$("#display").html(response);
				$("#display").slideDown(100);
			});
		}
	});
}