var slidingDiv2;
var slideUpSpeed2  = 10; //speed of the slide up divs
var dir2;
var which2;
function slideShow2()
{
	var slidingDiv2 = document.getElementById('price2Drop');
	if (typeof dir2  == "undefined") 
   		dir2 = '1';
	if(dir2 == '1')
	{
		if (parseInt(slidingDiv2.style.height) < 260 )
		{
			slidingDiv2.style.height = parseInt(slidingDiv2.style.height) + slideUpSpeed2 + "px";
			setTimeout(slideShow2, 1);
		}
		else
		{
			slidingDiv2.style.height = "260px";
		}
	}
	if(dir2 == '2')
	{
		if (parseInt(slidingDiv2.style.height) > 0 )
		{
			slidingDiv2.style.height = parseInt(slidingDiv2.style.height) - slideUpSpeed2 + "px";
			setTimeout(slideShow2, 1);
		}
		else
		{
			slidingDiv2.style.height = "0px";
		}
	}
}
function showPrice2(which2)
{
	dir2 = which2;
	if(dir2 == '1')
	{
		//alert('dir'+dir);
		document.getElementById('p2').style.visibility="visible";
	}
	if(dir2 == '2')
	{
		//alert('dir'+dir);
		document.getElementById('p2').style.visibility="hidden";
	}
	slideShow2();
}

