    
    $().ready(function(){
        
        $('#boxTitle1').click(function(){

			$('#boxTitle1').addClass('high');
			if($('#boxTitle2').hasClass('high')) $('#boxTitle2').removeClass('high');
			if($('#boxTitle3').hasClass('high')) $('#boxTitle3').removeClass('high');

			$('#infoBox1').css({'display': 'block'});
			$('#infoBox2').css({'display': 'none'});
			$('#infoBox3').css({'display': 'none'});

            return false;

        });
        
        $('#boxTitle2').click(function(){

			if($('#boxTitle1').hasClass('high')) $('#boxTitle1').removeClass('high');
			$('#boxTitle2').addClass('high');
			if($('#boxTitle3').hasClass('high')) $('#boxTitle3').removeClass('high');

			$('#infoBox1').css({'display': 'none'});
			$('#infoBox2').css({'display': 'block'});
			$('#infoBox3').css({'display': 'none'});

            return false;

        });

        $('#boxTitle3').click(function(){

			if($('#boxTitle1').hasClass('high')) $('#boxTitle1').removeClass('high');
			if($('#boxTitle2').hasClass('high')) $('#boxTitle2').removeClass('high');
			$('#boxTitle3').addClass('high');

			$('#infoBox1').css({'display': 'none'});
			$('#infoBox2').css({'display': 'none'});
			$('#infoBox3').css({'display': 'block'});

            return false;

        });
        
    });
