function changeDropText () {
	if ($('.showHideText').html() != CLICKSHOW) 
				$('.showHideText').html(CLICKSHOW);
			else
				$('.showHideText').html(CLICKHIDE);
}
function changeImg(imgName,imgPre) {
	if(document.images){
		document.images[imgName].src = eval(imgPre + '.src');
	}
}

function changeStyle(obj, new_style) {
    obj.className = new_style;
}
function SwitchSiteLanguage(IsoCode)
{
  var Cookie    = '';
  var dExpires  = new Date();

  dExpires.setTime(dExpires.getTime() + 60 * 60 * 24 * 30 * 1000);

  Cookie += 'site_language=' + IsoCode + '; ';
  Cookie += 'expires=' + dExpires.toGMTString() + '; ';
  Cookie += 'path=/; ';

  document.cookie = Cookie;

  return true;
}
$(document).ready(function(){
	if($('#sidebarLeftContainer').hasClass('collapsed')) {
		$('#contentContainer').css('width', '725px');
		$('.showHideText').html(CLICKSHOW);
		$('#sidebarLeftList').hide();
	}
	else {
		$('.showHideText').html(CLICKHIDE);
	}
	
	$('#sidebarLeftFooter').click(function(){
		if($('#sidebarLeftContainer').hasClass('expanded')) {
			changeDropText();
			$('#sidebarLeftContainer').addClass('collapsed').removeClass('expanded');
			$('#sidebarLeftList').slideToggle('slow', function(){
					//$('#contentContainer').animate({'width': '725px'});
			});
		}
		else
		{
			/*$('#contentContainer').animate({'width': '450px'}, function(){*/ $('#sidebarLeftList').slideToggle('slow'); /*});*/
			$('#sidebarLeftContainer').addClass('expanded').removeClass('collapsed');
			changeDropText();
		}
	});
	$('.leadButton').removeAttr('onclick');
	Shadowbox.init();
});

