var pid,cid;
// JavaScript Document
$(document).ready(function() {
    $('.slideshow').cycle({
		fx: 'blindZ',
		speed:500,
		timeout:0
	});
	pid="home";
});


function Slidein(cid,id)
{
//document.getElementById("content").innerHTML = "1.htm";
document.getElementById(pid).style.display = "none";

document.getElementById(cid).style.display = "";

$('.slideshow').cycle(id);

pid = cid;
}


