var slidingDiv3;
var slideUpSpeed3  = 10; //speed of the slide up divs
var dir3;
var which3;
function slideShow3()
{
	var slidingDiv3 = document.getElementById('price3Drop');
	if (typeof dir4  == "undefined") 
   		dir3 = '1';
	if(dir3 == '1')
	{
		if (parseInt(slidingDiv3.style.height) < 260 )
		{
			slidingDiv3.style.height = parseInt(slidingDiv3.style.height) + slideUpSpeed3 + "px";
			setTimeout(slideShow3, 1);
		}
		else
		{
			slidingDiv3.style.height = "260px";
		}
	}
	if(dir3 == '2')
	{
		if (parseInt(slidingDiv3.style.height) > 0 )
		{
			slidingDiv3.style.height = parseInt(slidingDiv3.style.height) - slideUpSpeed3 + "px";
			setTimeout(slideShow3, 1);
		}
		else
		{
			slidingDiv3.style.height = "0px";
		}
	}
}
function showPrice3(which3)
{
	dir3 = which3;
	if(dir3 == '1')
	{
		//alert('dir'+dir);
		document.getElementById('p3').style.visibility="visible";
	}
	if(dir3 == '2')
	{
		//alert('dir'+dir);
		document.getElementById('p3').style.visibility="hidden";
	}
	slideShow3();
}

