$('properties').scrollTop = '45';
scrollPlacement = 45;
var lastCountry = '';
function scrollChannels (country)
{
	var scrollBody = $('channel-scroller');
	switch(country)
	{
		case 'argentina':
		  scrollToHere = 0; 
		break;    
		case 'bolivia':
		  scrollToHere = 160; 
		break;
		case 'chile':
		  scrollToHere = 260; 
		break;
		case 'dominican-republic':
		  scrollToHere = 500; 
		break;
		case 'paraguay':
		  scrollToHere = 700; 
		break;
		case 'peru':
		  scrollToHere = 900; 
		break;
		case 'venezuela':
		  scrollToHere = 1000; 
		break;
	}
	if (country == 'venezuela') {
		$(country).style.backgroundImage = 'url(/files/img/pages/home/selected-row-background-2.jpg)';
	} else if (country == 'mexico') {
		$(country).style.backgroundImage = 'url(/files/img/pages/home/selected-row-background-3.jpg)';
	} else {
		$(country).style.backgroundImage = 'url(/files/img/pages/home/selected-row-background-1.jpg)';
	}
	if (lastCountry != '')
		$(lastCountry).style.backgroundImage = 'url(/files/img/pages/home/properties-channel-title.jpg)';
	lastCountry = country;
	new Effect.Tween($('properties'), scrollPlacement, scrollToHere, { duration: 0.34, transition: Effect.Transitions.sinoidal }, function(p){ this.scrollTop = p });
	scrollPlacement = scrollToHere;
}
