jQuery(document).ready(function($){

	$(function(){
	
		$("a#rc, a#co, a#sm").click(function(){
		
			return false;
		
		});
		
		$("#logo").click(function(){
		
			$("ul#menu li a").removeClass("inactive");
		
			if ($(".topright_bg").hasClass("current")){
			
				$(".current").fadeOut(500, function(){
				
					$("#topright_00 .topright_bg_inside").fadeIn(500);
				
				});
				
				$("#topright_01, #topright_02, #topright_03").removeClass("current");
				
			} else {
			
				location.reload();
			
			}
		
		});
		
		$("a#rc").click(function(){
		
			if ($(this).hasClass("inactive")){
			
				$(this).removeClass("inactive")	
			
			}
						
			$("a#co, a#sm").addClass("inactive");
		
			if ($("#topright_01").hasClass("current")){
			
				return false;			
			
			} else {
			
				if ($(".topright_bg").hasClass("current")){
					
					$(".current .topright_bg_inside").fadeOut(500, function(){
					
						$(".current").fadeOut(500);
						$("#topright_01").fadeIn(500, function(){
						
							$("#topright_01 .topright_bg_inside").fadeIn(500);
							$("#topright_01").addClass("current");
							$("#topright_02, #topright_03").removeClass("current");									
						
						});
					
					});
				
				} else {
				
					$(".topright_bg_inside").fadeOut(500, function(){

						$("#topright_01").fadeIn(500, function(){
							
							$("#topright_01 .topright_bg_inside").fadeIn(500);
						
						});

					});
					
					$("#topright_01").addClass("current");			
				
				}			
			
			}		
			
		});

		$("a#co").click(function(){

			if ($(this).hasClass("inactive")){
			
				$(this).removeClass("inactive")	
			
			}
						
			$("a#rc, a#sm").addClass("inactive");		

			if ($("#topright_02").hasClass("current")){
			
				return false;			
			
			} else {		

				if ($(".topright_bg").hasClass("current")){
					
					$(".current .topright_bg_inside").fadeOut(500, function(){
					
						$(".current").fadeOut(500);
						$("#topright_02").fadeIn(500, function(){
						
							$("#topright_02 .topright_bg_inside").fadeIn(500);
							$("#topright_02").addClass("current");
							$("#topright_01, #topright_03").removeClass("current");									
						
						});
					
					});								
				
				} else {
				
					$(".topright_bg_inside").fadeOut(500, function(){

						$("#topright_02").fadeIn(500, function(){
							
							$("#topright_02 .topright_bg_inside").fadeIn(500);
						
						});

					});
					
					$("#topright_02").addClass("current");			
				
				}
			
			}		
			
		});

		$("a#sm").click(function(){

			if ($(this).hasClass("inactive")){
			
				$(this).removeClass("inactive")	
			
			}
						
			$("a#rc, a#co").addClass("inactive");		
		
			if ($("#topright_03").hasClass("current")){
			
				return false;			
			
			} else {		
		
				if ($(".topright_bg").hasClass("current")){
					
					$(".current .topright_bg_inside").fadeOut(500, function(){
					
						$(".current").fadeOut(500);
						$("#topright_03").fadeIn(500, function(){
						
							$("#topright_03 .topright_bg_inside").fadeIn(500);
							$("#topright_03").addClass("current");
							$("#topright_01, #topright_02").removeClass("current");									
						
						});
					
					});
				
				} else {
				
					$(".topright_bg_inside").fadeOut(500, function(){

						$("#topright_03").fadeIn(500, function(){
							
							$("#topright_03 .topright_bg_inside").fadeIn(500);
						
						});

					});
					
					$("#topright_03").addClass("current");			
				
				}
			
			}		
			
		});							
	
	});

});
