var timer=null;

var t_idx=0;

function Testimonial(text,person)
{
	this.Text=text;
	this.Person=person;
}


var testmonials = [new Testimonial('Excellent platfom to meet green building experts and it provides excellent networking opportunities.', 'Heinz Schibler, International Marketing Manager, Sauter Corporate'), new Testimonial('Generally great!', 'Hao Lu, Technical Director, Gensler'), new Testimonial('Good, many of the discussion. I have learned a lot from all different speakers.', 'Fang Yi, Marekting Manager, CH2M HILL'), new Testimonial('Very well organised and enlightening.', 'Shirley Jiang, Trade Commisioner, Canadian Embassy'), new Testimonial('Generally meet my objectives, made some good contacts, could see how architects adopt and suppliers promote "green building"', 'Stan French, CEO, Diamond Wood China')];

$(function() {
    $('#nav .header').hover(
		function() {
		    $('*', $('#s_ChildMenu')).remove();
		    $('ul', this).clone().appendTo($('#s_ChildMenu'));
		},
		function() { }
	);
    $('#s_ChildMenu').bind('mouseleave', function() {
        //timer=setTimeout('HideChildMenu',1000);
        HideChildMenu()
    }).bind('mousein', function() {
        clearTimeout(timer);
    });
    //var c = readCookie('style');
    //if (c) switchStyle(c);

    //SwitchPhoto(photos,6);
    SwitchTml(testmonials);

    if ($('#left_m').height() < ($('#top').height() + $('#content').height())) {
        $('.s_pastBox').height(($('#top').height() + $('#content').height()) - $('.s_lift_menu').height() - 41);

    }

    if (($('#bot').height() + $('#content').height()) > $('#right').height()) {
        $('#right').height($('#bot').height() + $('#content').height()-23);
    }
    if (($('#left_m').height() > ($('.s_lift_menu').height() + $('#title').height() + $('#vertical').height()))) {
        $('#vertical').height($('#left_m').height() - ($('.s_lift_menu').height() + $('#title').height()));
        if ($('#vertical').height() > 300) {
            $('#vertical').height(300);
        }
    }
    if (($('#left_m').height() + $('#bot').height()) > ($('#right').height() + $('#top').height())) {
        $('#vertical').height(($('#right').height() + $('#top').height()) - ($('#bot').height() + $('.s_lift_menu').height() + $('#title').height()));
    }

});

function SwitchTml(tmls)
{
	$('*','#s_Tml').remove();
	$('#s_Tml').append('<span class="tml_text">'+tmls[t_idx].Text+'</span>'+'<span class="tml_psn">-- '+tmls[t_idx].Person+'</span>')
	t_idx++;
	if(t_idx>=tmls.length){t_idx=0;}
	setTimeout('SwitchTml(testmonials)',5000);
}

