//===================================================================
var strPhotogallery=new Array();
var c=1;

strPhotogallery[c++]=new Array("ganapati_festival","specials1_01.jpg","ganapati_festival","specials1_02.jpg","pg_gf.asp");
strPhotogallery[c++]=new Array("red_carpet","specials2_01.jpg","red_carpet","specials2_02.jpg","pg_rc.asp");
strPhotogallery[c++]=new Array("fashion_show","specials3_01.jpg","fashion_show","specials3_02.jpg","pg_out_take.asp");
strPhotogallery[c++]=new Array("dutch_holiday","specials4_01.jpg","dutch_holiday","specials4_02.jpg","pg_dutch_holiday.asp");
strPhotogallery[c++]=new Array("kung_fu","specials5_01.jpg","kung_fu","specials5_02.jpg","pg_kungfu.asp");
strPhotogallery[c++]=new Array("shahid_kareen","specials6_01.jpg","shahid_kareen","specials6_02.jpg","pg_ks.asp");
strPhotogallery[c++]=new Array("aamir_sanj","specials7_01.jpg","aamir_sanj","specials7_02.jpg","pg_as.asp");
strPhotogallery[c++]=new Array("dance_charity","specials8_01.jpg","dance_charity","specials8_02.jpg","pg_dc.asp");

//===================================================================

NewCnt_csr = new Array("Ganapati Festival","Red Carpet","Pooja-Hanif's night out at a Fashion Show","Jodi 01's Dutch Holiday","Rakhi's Kung Fu","Kareena and Shahid","Sanjeeda Sheikh and Aamir Ali","Dance For Charity")

function chgimage(jodi_id)
{
	csr_cnt.innerHTML = NewCnt_csr[jodi_id-1];
	//alert(strPhotogallery.length)
	for (i=1;i<strPhotogallery.length;i++)
	{
		if (i==jodi_id)
		{
			document.gal_image[i-1].src = "http://www.indya.com/nachbaliye3/images/gallery/thumbnails/specials/specials"+ i +"_02.jpg"
		}
		else
		{
			document.gal_image[i-1].src = "http://www.indya.com/nachbaliye3/images/gallery/thumbnails/specials/specials"+ i +"_01.jpg"
		}
	}
}
function chgimage_mout(img_id)
{
	document.gal_image[img_id-1].src = "http://www.indya.com/nachbaliye3/images/gallery/thumbnails/specials/specials"+ img_id +"_01.jpg"
}

//===================================================================