$(document).ready(function(){
	if($('#content').is('div')){
		handleSwf();
	}					   
	if($('#footer').is('div')){
		handleFooter();
	}					   
})

function handleSwf(){
	var flashvars= {
		xmlPath: "xml/landing.xml" 
	}
	swfobject.embedSWF("flash/main.swf", "content", "1021", "500", "8.0.0", "flash/expressInstall.swf", flashvars);
}

function handleFooter(){
	$('#construction a').click(function(){								
		if($('#construction_list').attr('class')=='country_wrap on'){
			$('#construction').css({'background' : 'none'});
			$('#construction a').css({'background' : 'url(img/footer_btn.jpg)'});			
			$('#construction_list').removeClass('on');
			$('#construction_list').fadeOut();
		}
		else{
			if($('#agriculture_list').attr('class')== 'country_wrap on' ){
				$('#agriculture_list').removeClass('on');
				$('#agriculture_list').fadeOut();
				$('#agriculture').css({'background' : 'none'});
				$('#agriculture a').css({'background' : 'url(img/footer_btn.jpg)'});		
			}
			else{
				$('html, body').animate({
					scrollTop: $("#scrollToHere").offset().top
				}, 1100);	
			}
			$('#construction').css({'background' : 'url(img/btn_on.jpg)'});
			$('#construction a').css({'background' : 'none'});
			$('#construction_list').addClass('on');
			$('#construction_list').fadeIn();
		}
		return false;
	});
	$('#agriculture a').click(function(){
		if($('#agriculture_list').attr('class')=='country_wrap on'){
			$('#agriculture').css({'background' : 'none'});
			$('#agriculture a').css({'background' : 'url(img/footer_btn.jpg)'});				
			$('#agriculture_list').removeClass('on');
			$('#agriculture_list').fadeOut();
		}
		else{
			if($('#construction_list').attr('class')== 'country_wrap on' ){
				$('#construction_list').removeClass('on');
				$('#construction_list').fadeOut();	
				$('#construction').css({'background' : 'none'});
				$('#construction a').css({'background' : 'url(img/footer_btn.jpg)'});
			}
			else{
				$('html, body').animate({
					scrollTop: $("#scrollToHere").offset().top
				}, 1100);		
			}
			$('#agriculture').css({'background' : 'url(img/btn_on.jpg)'});
			$('#agriculture a').css({'background' : 'none'});
			$('#agriculture_list').addClass('on');
			$('#agriculture_list').fadeIn();
		}
		return false;
	});
}
