var activeHomeSectionBrands = null;
var activeHomeSectionWebsites = null;

function initHomeSectionBrands(id){
	activeHomeSectionBrands = id;
}

function showHomeSectionBrands(id){	
	hideHomeSectionBrands()
	if($('home_section_Brands'+id)) new Effect.Appear('home_section_Brands'+id, {duration:0.5});
	if($('home_section_link_Brands'+id)) $('home_section_link_Brands'+id).style.borderColor='#FF5A00';	
	initHomeSectionBrands(id);
}

function hideHomeSectionBrands(){
	//if($('home_section_Brands'+activeHomeSectionBrands)) $('home_section_Brands'+activeHomeSectionBrands).hide();
	if($('home_section_Brands'+activeHomeSectionBrands)) new Effect.Fade('home_section_Brands'+activeHomeSectionBrands, {duration:0.3});
	if($('home_section_link_Brands'+activeHomeSectionBrands)) $('home_section_link_Brands'+activeHomeSectionBrands).style.borderColor='#B2B2B2';	
}

function initHomeSectionWebsites(id){
	activeHomeSectionWebsites = id;
}

function showHomeSectionWebsites(id){	
	hideHomeSectionWebsites()
	if($('home_section_Websites'+id)) new Effect.Appear('home_section_Websites'+id, {duration:0.3});
	if($('home_section_link_Websites'+id)) $('home_section_link_Websites'+id).style.borderColor='#FF5A00';	
	initHomeSectionWebsites(id);
}

function hideHomeSectionWebsites(){
	if($('home_section_Websites'+activeHomeSectionWebsites)) $('home_section_Websites'+activeHomeSectionWebsites).hide();
	if($('home_section_link_Websites'+activeHomeSectionWebsites)) $('home_section_link_Websites'+activeHomeSectionWebsites).style.borderColor='#B2B2B2';	
}



var activeSiteImage = null;

function initSiteImage(id){
	activeSiteImage = id;
}

function showSiteImage(id){	
	hideSiteImage()
	if($('site_image_'+id)) new Effect.Appear('site_image_'+id, {duration:0.5});
	if($('site_image_link_'+id)) $('site_image_link_'+id).style.borderColor='#FF5A00';	
	initSiteImage(id);
}

function hideSiteImage(){
	if($('site_image_'+activeSiteImage)) new Effect.Fade('site_image_'+activeSiteImage, {duration:0.3});	
	if($('site_image_link_'+activeSiteImage)) $('site_image_link_'+activeSiteImage).style.borderColor='#B2B2B2';	
}


function loadHomeSubSite(id){
	activeHomeSectionWebsites = id;
		
	new Ajax.Request(
		'/site/view_simple', 
		{
			method: 'post',
			parameters: {id: id},
			onSuccess: function(transport){
				var response = transport.responseText || '';
				$('home_bottom_box').innerHTML = response;
				new Effect.Appear('home_bottom_box', {duration:0.5});
				$('brand-new-websites').hide();
			},
			onLoading: function(){
				$('brand-new-websites').show();
				new Effect.Fade('home_bottom_box', {duration:0.3});
			}
		}
	);
}

function linkLoadHomeSubSite(id){
	if($('home_section_link_Websites'+activeHomeSectionWebsites)) $('home_section_link_Websites'+activeHomeSectionWebsites).style.borderColor='#B2B2B2';	
	if($('home_section_link_Websites'+id)) $('home_section_link_Websites'+id).style.borderColor='#FF5A00';	
	activeHomeSectionWebsites = id;
	loadHomeSubSite(id);
}

