// JavaScript Document
//=======================================================
// BEGIN - Strip
//=======================================================
function StopStripScrolling()
{
	clearTimeout(StripTimer);
}

function StartStripScrolling(dir)
{
	if ( dir == 'r' )
	{
		strip_scrolling_dir = 'r';
	}
	else if ( dir == 'l' )
	{
		strip_scrolling_dir = 'l';
	}
	
	if ( strip_scrolling_dir == 'r' )
	{
		StripScrolling_Right();
	}
	else
	{
		StripScrolling_Left();
	}
}

function StripScrolling_Left()
{
	var strip = document.getElementById('div_strip');
	
	strip.scrollLeft = strip.scrollLeft + 1;
	//alert(strip.scrollLeft);
	if ( strip.scrollLeft >= strip_width + 1 )
	{
		strip.scrollLeft = 0;
	}
	
	StripTimer = setTimeout('StripScrolling_Left()', 12);
}


function StripScrolling_Right()
{
	var strip = document.getElementById('div_strip');
	
	strip.scrollLeft = strip.scrollLeft - 1;
	
	if ( strip.scrollLeft <= 0 )
	{
		strip.scrollLeft = strip_width;
	}
	
	StripTimer = setTimeout('StripScrolling_Right()', 12);
}
//=======================================================
// END - Strip
//=======================================================

function showStripInfo(villa_id, n)
{
	var obj = document.getElementById('strip_info_' + n + '_' + villa_id);
	
	obj.style.width = document.getElementById('strip_img_' + n + '_' + villa_id).width;
	obj.style.display = 'block';
}

function hideStripInfo(villa_id, n)
{
	var obj = document.getElementById('strip_info_' + n + '_' + villa_id);
	
	obj.style.display = 'none';
}

